diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index c9b15603df..e0137ec451 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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