From 21d0fff243f7033ca98d059bf6d224bd9c9c79d8 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sat, 14 Sep 2024 01:37:07 +0200 Subject: [PATCH] fixup! TO-DROP: force the upload-artifact Action to be used --- .github/workflows/main.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5de6e9099211a2..56564134810008 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -54,13 +54,11 @@ jobs: curl -Lo /tmp/node.tar.gz $NODE_URL && tar -C /__e/node20 -x --strip-components=1 -f /tmp/node.tar.gz - uses: actions/checkout@v4 - # - run: ci/install-dependencies.sh - # - run: ci/run-build-and-tests.sh - - name: let it fail - run: echo FAILED_TEST_ARTIFACTS=ci >>$GITHUB_ENV && exit 1 - # - name: print test failures - # if: failure() && env.FAILED_TEST_ARTIFACTS != '' - # run: ci/print-test-failures.sh + - run: ci/install-dependencies.sh + - run: ci/run-build-and-tests.sh + - name: print test failures + if: failure() && env.FAILED_TEST_ARTIFACTS != '' + run: ci/print-test-failures.sh - name: Upload failed tests' directories if: failure() && env.FAILED_TEST_ARTIFACTS != '' uses: actions/upload-artifact@v4