Skip to content

Commit

Permalink
no log: another attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Nov 18, 2023
1 parent b3b4fef commit 164d487
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/build_test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

python3 "${ROOT_DIRECTORY}"/bazarr.py &
python3 "${ROOT_DIRECTORY}"/bazarr.py --no-update &
PID=$!

sleep 30
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4

- name: Cache node_modules
uses: actions/cache@v3
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4

- name: Set up Python 3.8
uses: actions/setup-python@v4
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_beta_to_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
exit 1
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4
with:
fetch-depth: ${{ env.FETCH_DEPTH }}
ref: development
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_dev_to_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
exit 1
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: development
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4

- name: Merge development -> master
uses: devmasx/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_bazarr_execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
exit 1
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4
with:
fetch-depth: ${{ env.FETCH_DEPTH }}
ref: development
Expand Down

0 comments on commit 164d487

Please sign in to comment.