comparison .github/workflows/make.yaml @ 30817:35b6f68c8e46

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 05 Mar 2022 11:28:54 +0100
parents 7a0dae91a4fc f5587d651bc7
children 1bc5ea8aab94
comparison
equal deleted inserted replaced
30815:3ee2fba50b72 30817:35b6f68c8e46
292 timeout-minutes: 5 292 timeout-minutes: 5
293 run: cat ./.build/test/fntests.log 293 run: cat ./.build/test/fntests.log
294 294
295 - name: analyze test suite results 295 - name: analyze test suite results
296 # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION" 296 # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION"
297 run: | 297 run: |
298 [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed" 298 [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed"
299 [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite" 299 [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite"
300 echo Finished analyzing test suite results. 300 echo Finished analyzing test suite results.
301 301
302 302
521 timeout-minutes: 5 521 timeout-minutes: 5
522 run: cat fntests.log 522 run: cat fntests.log
523 523
524 - name: analyze test suite results 524 - name: analyze test suite results
525 # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION" 525 # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION"
526 run: | 526 run: |
527 [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed" 527 [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed"
528 [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite" 528 [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite"
529 echo Finished analyzing test suite results. 529 echo Finished analyzing test suite results.