mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-23 06:21:05 +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
|
#!/bin/bash
|
||||||
|
|
||||||
python3 "${ROOT_DIRECTORY}"/bazarr.py &
|
python3 "${ROOT_DIRECTORY}"/bazarr.py --no-update &
|
||||||
PID=$!
|
PID=$!
|
||||||
|
|
||||||
sleep 30
|
sleep 30
|
||||||
|
|
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Cache node_modules
|
- name: Cache node_modules
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
|
@ -73,7 +73,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
|
@ -91,7 +91,7 @@ jobs:
|
||||||
|
|
||||||
- name: Unit Tests
|
- name: Unit Tests
|
||||||
run: |
|
run: |
|
||||||
python3 bazarr.py &
|
python3 bazarr.py --no-update &
|
||||||
PID=$!
|
PID=$!
|
||||||
sleep 15
|
sleep 15
|
||||||
if kill -s 0 $PID
|
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
|
exit 1
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: ${{ env.FETCH_DEPTH }}
|
fetch-depth: ${{ env.FETCH_DEPTH }}
|
||||||
ref: development
|
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
|
exit 1
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
ref: development
|
ref: development
|
||||||
|
@ -64,7 +64,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Merge development -> master
|
- name: Merge development -> master
|
||||||
uses: devmasx/merge-branch@1.4.0
|
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
|
exit 1
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: ${{ env.FETCH_DEPTH }}
|
fetch-depth: ${{ env.FETCH_DEPTH }}
|
||||||
ref: development
|
ref: development
|
||||||
|
|
Loading…
Reference in a new issue