mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-22 22:10:42 +00:00
no log: another attempt to fix CI
This commit is contained in:
parent
b3b4fef8c7
commit
164d487f06
5 changed files with 8 additions and 8 deletions
2
.github/scripts/build_test.sh
vendored
2
.github/scripts/build_test.sh
vendored
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
python3 "${ROOT_DIRECTORY}"/bazarr.py &
|
||||
python3 "${ROOT_DIRECTORY}"/bazarr.py --no-update &
|
||||
PID=$!
|
||||
|
||||
sleep 30
|
||||
|
|
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
|
2
.github/workflows/release_beta_to_dev.yaml
vendored
2
.github/workflows/release_beta_to_dev.yaml
vendored
|
@ -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
|
||||
|
|
4
.github/workflows/release_dev_to_master.yaml
vendored
4
.github/workflows/release_dev_to_master.yaml
vendored
|
@ -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
|
||||
|
@ -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/merge-branch@1.4.0
|
||||
|
|
2
.github/workflows/test_bazarr_execution.yml
vendored
2
.github/workflows/test_bazarr_execution.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue