changeset 30842:4d2da8a3dca6 stable

Back out changeset: f5587d651bc7
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 17 Mar 2022 16:41:42 +0100
parents 2989202f92f8
children ecde6a40fb72 1a4a3ba925c8
files .github/workflows/make.yaml
diffstat 1 files changed, 4 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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.