diff options
author | morpheus65535 <[email protected]> | 2023-11-18 12:10:19 -0500 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-11-18 12:10:19 -0500 |
commit | 164d487f0618ce3869a0cc6a18aecad234eab2dc (patch) | |
tree | 5de339d4bb18403621a7fc17654a011affd0832f /.github | |
parent | b3b4fef8c7b8de80d9c7167a445815b8f356f8aa (diff) | |
download | bazarr-164d487f0618ce3869a0cc6a18aecad234eab2dc.tar.gz bazarr-164d487f0618ce3869a0cc6a18aecad234eab2dc.zip |
no log: another attempt to fix CI
Diffstat (limited to '.github')
-rwxr-xr-x | .github/scripts/build_test.sh | 2 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rw-r--r-- | .github/workflows/release_beta_to_dev.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/release_dev_to_master.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/test_bazarr_execution.yml | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/.github/scripts/build_test.sh b/.github/scripts/build_test.sh index 4e9287fb1..b3d8eb4bf 100755 --- a/.github/scripts/build_test.sh +++ b/.github/scripts/build_test.sh @@ -1,6 +1,6 @@ #!/bin/bash -python3 "${ROOT_DIRECTORY}"/bazarr.py & +python3 "${ROOT_DIRECTORY}"/bazarr.py --no-update & PID=$! sleep 30 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 160644586..86b649ba3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/[email protected] + uses: actions/checkout@v4 - name: Cache node_modules uses: actions/cache@v3 @@ -73,7 +73,7 @@ jobs: steps: - name: Checkout repository - uses: actions/[email protected] + uses: actions/checkout@v4 - name: Set up Python 3.8 uses: actions/setup-python@v4 @@ -91,7 +91,7 @@ jobs: - name: Unit Tests run: | - python3 bazarr.py & + python3 bazarr.py --no-update & PID=$! sleep 15 if kill -s 0 $PID diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index 24e29c894..6cf0a87fb 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -18,7 +18,7 @@ jobs: exit 1 - name: Checkout - uses: actions/[email protected] + uses: actions/checkout@v4 with: fetch-depth: ${{ env.FETCH_DEPTH }} ref: development diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml index a618f43cb..f9ae5697d 100644 --- a/.github/workflows/release_dev_to_master.yaml +++ b/.github/workflows/release_dev_to_master.yaml @@ -22,7 +22,7 @@ jobs: exit 1 - name: Checkout - uses: actions/[email protected] + uses: actions/checkout@v4 with: fetch-depth: 0 ref: development @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/[email protected] + uses: actions/checkout@v4 - name: Merge development -> master uses: devmasx/[email protected] diff --git a/.github/workflows/test_bazarr_execution.yml b/.github/workflows/test_bazarr_execution.yml index a10a2add2..da31638c0 100644 --- a/.github/workflows/test_bazarr_execution.yml +++ b/.github/workflows/test_bazarr_execution.yml @@ -16,7 +16,7 @@ jobs: exit 1 - name: Checkout - uses: actions/[email protected] + uses: actions/checkout@v4 with: fetch-depth: ${{ env.FETCH_DEPTH }} ref: development |