Skip to content

Commit

Permalink
fixup cancelled
Browse files Browse the repository at this point in the history
  • Loading branch information
privat committed Jun 27, 2024
1 parent af90783 commit a806375
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
- uses: actions/checkout@v4
- run: misc/jenkins/ensuregit.sh
- run: misc/jenkins/checkwhitespaces.sh
if: !cancelled()
if: ${{ !cancelled() }}
- run: misc/jenkins/checklicense.sh
if: !cancelled()
if: ${{ !cancelled() }}
- run: misc/jenkins/checksignedoffby.sh
if: !cancelled()
if: ${{ !cancelled() }}

tests-some:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -66,17 +66,17 @@ jobs:
- run: cd tests && ./search_tests_git.sh origin/master HEAD > list
- run: cd tests && ./tests.sh --engine ${{ matrix.engine }} `cat list`
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: 'tests/*.xml'
name: tests-some-${{ matrix.engine }}
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: 'tests/out'
name: tests-some-${{ matrix.engine }}-res
- uses: EnricoMi/publish-unit-test-result-action@v2
if: !cancelled()
if: ${{ !cancelled() }}
with:
files: "tests/*.xml"
comment_mode: always
Expand Down Expand Up @@ -112,17 +112,17 @@ jobs:
- name: Run tests
run: cd tests && ./testfull.sh --engine ${{ matrix.engine }}
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: 'tests/*.xml'
name: tests-full-${{ matrix.engine }}
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: 'tests/out'
name: tests-full-${{ matrix.engine }}-res
- uses: EnricoMi/publish-unit-test-result-action@v2
if: !cancelled()
if: ${{ !cancelled() }}
with:
files: "tests/*.xml"
comment_mode: always
Expand Down Expand Up @@ -152,12 +152,12 @@ jobs:
- run: chmod +x bin/*
- run: make nitunit-some
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: '*.xml'
name: nitunit-some
- uses: EnricoMi/publish-unit-test-result-action@v2
if: !cancelled()
if: ${{ !cancelled() }}
with:
files: "*.xml"
comment_mode: always
Expand Down Expand Up @@ -187,12 +187,12 @@ jobs:
- run: chmod +x bin/*
- run: make nitunit-full
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: '*.xml'
name: nitunit-full
- uses: EnricoMi/publish-unit-test-result-action@v2
if: !cancelled()
if: ${{ !cancelled() }}
with:
files: "*.xml"
comment_mode: always
Expand All @@ -209,12 +209,12 @@ jobs:
- run: chmod +x bin/*
- run: 'PATH=$PWD/bin:$PATH make test-contrib'
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: '*.xml'
name: test-contrib
- uses: EnricoMi/publish-unit-test-result-action@v2
if: !cancelled()
if: ${{ !cancelled() }}
with:
files: "*.xml"
comment_mode: always
Expand All @@ -239,7 +239,7 @@ jobs:
- run: chmod +x bin/*
- run: 'PATH=$PWD/bin:$PATH make bench-fast'
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: |-
benchmarks/*.dat
Expand All @@ -259,7 +259,7 @@ jobs:
- run: chmod +x bin/*
- run: make valgrind
- uses: actions/upload-artifact@v4
if: !cancelled()
if: ${{ !cancelled() }}
with:
path: 'valgrind.out'
name: valgrind
Expand Down

0 comments on commit a806375

Please sign in to comment.