# HG changeset patch # User Markus Mützel # Date 1647531702 -3600 # Node ID 4d2da8a3dca69327150b4ecc5e6b7bb9630877e5 # Parent 2989202f92f8059d26f757f940acfbb22efa28af Back out changeset: f5587d651bc7 diff -r 2989202f92f8 -r 4d2da8a3dca6 .github/workflows/make.yaml --- a/.github/workflows/make.yaml Thu Mar 17 02:44:19 2022 -0400 +++ b/.github/workflows/make.yaml Thu Mar 17 16:41:42 2022 +0100 @@ -294,7 +294,7 @@ - name: analyze test suite results # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION" - run: | + run: | [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed" [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite" echo Finished analyzing test suite results. @@ -519,11 +519,7 @@ - name: analyze test suite results # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION" - env: - MSYSTEM: ${{ matrix.msystem }} - run: | - [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || \ - ( [[ $MSYSTEM = "MINGW64" ]] && exit 1 || echo "::warning::At least one test failed" ) - [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || \ - ( [[ $MSYSTEM = "MINGW64" ]] && exit 1 || echo "::warning::At least one regression in test suite" ) + run: | + [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed" + [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite" echo Finished analyzing test suite results.