Merge pull request #1859 from famedly/td/notCancelled
chore: use not cancelled in actions instead of always
This commit is contained in:
commit
4af9ea38f9
|
|
@ -45,7 +45,7 @@ jobs:
|
||||||
sudo apt-get update && sudo apt-get install --no-install-recommends --no-install-suggests -y curl lcov python3 python3-distutils libsqlite3-0 libsqlite3-dev
|
sudo apt-get update && sudo apt-get install --no-install-recommends --no-install-suggests -y curl lcov python3 python3-distutils libsqlite3-0 libsqlite3-dev
|
||||||
./scripts/test.sh
|
./scripts/test.sh
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
if: always()
|
if: ${{ !cancelled() }}
|
||||||
with:
|
with:
|
||||||
name: coverage_without_olm
|
name: coverage_without_olm
|
||||||
path: coverage_dir/
|
path: coverage_dir/
|
||||||
|
|
@ -65,7 +65,7 @@ jobs:
|
||||||
sudo apt-get update && sudo apt-get install --no-install-recommends --no-install-suggests -y curl lcov python3 python3-distutils libsqlite3-0 libsqlite3-dev libolm3 libssl3
|
sudo apt-get update && sudo apt-get install --no-install-recommends --no-install-suggests -y curl lcov python3 python3-distutils libsqlite3-0 libsqlite3-dev libolm3 libssl3
|
||||||
./scripts/test.sh
|
./scripts/test.sh
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
if: always()
|
if: ${{ !cancelled() }}
|
||||||
with:
|
with:
|
||||||
name: coverage
|
name: coverage
|
||||||
path: coverage_dir/
|
path: coverage_dir/
|
||||||
|
|
@ -73,7 +73,7 @@ jobs:
|
||||||
|
|
||||||
|
|
||||||
merge_converage:
|
merge_converage:
|
||||||
if: always()
|
if: ${{ !cancelled() }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [coverage, coverage_without_olm]
|
needs: [coverage, coverage_without_olm]
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue