From 7c0fbe7f2c34c4688326c6bfe836d156bebb8b8c Mon Sep 17 00:00:00 2001 From: Patrick R Date: Wed, 27 Nov 2024 15:30:52 +0100 Subject: [PATCH] Changes error behavior of testing job If no xml with test results is produced/found the testing job no fails. To prevent the complete pipeline from stopping this deactivates fail-fast for the job. --- .github/workflows/bundle.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml index 239ab10..db3de70 100644 --- a/.github/workflows/bundle.yml +++ b/.github/workflows/bundle.yml @@ -66,7 +66,7 @@ jobs: test-image: needs: [prepare-image] strategy: - fail-fast: true + fail-fast: false matrix: smalltalk: - Squeak-trunk @@ -114,6 +114,7 @@ jobs: with: name: ${{ matrix.smalltalk }}-tests path: tmp/*.xml # smalltalkCI test results + if-no-files-found: error # If smalltalkCI run does not complete, no output is produced prepare-bundles: