diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06f393e..26c2051 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,7 @@ jobs: logfile: ${{ matrix.logfile }} build-command: ${{ matrix.build-command }} analyze-output: ${{ matrix.analyze-output }} - - name: "Reject test if previous step did not fail" + - name: "Check and reject job if previous test should have failed, but did not" if: ${{ steps.codechecker.continue-on-error && steps.codechecker.outcome != 'failure' }} run: | echo "::error title=Step with expected failure passed::" diff --git a/src/parse-results.sh b/src/parse-results.sh index 940354c..5ac05bc 100755 --- a/src/parse-results.sh +++ b/src/parse-results.sh @@ -44,10 +44,6 @@ echo "::set-output name=OUTPUT_LOG::$OUTPUT_LOG" if [[ "$EXIT_CODE" == "2" ]]; then echo "::set-output name=HAS_FINDINGS::true" - if [[ "$IN_FAIL_IF_REPORTS" == "true" ]]; then - echo "::notice title=Static analysis suppressed::CodeChecker static analyser found bug reports, but the build job is configured to suppress it." - fi - # Let the jobs continue. If there were failures, the action script will break # the build in a later step. (After a potential upload to server.) EXIT_CODE=0