diff options
| author | Junio C Hamano <gitster@pobox.com> | 2022-12-10 14:02:09 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-12-10 14:02:09 +0900 |
| commit | 8972be02520e0b02c864c3c8fa7ed2271043f0fc (patch) | |
| tree | aa67d39390190cc6d05524337d42780bbe2a5983 | |
| parent | Merge branch 'od/ci-use-checkout-v3-when-applicable' into maint-2.38 (diff) | |
| parent | CI: don't explicitly pick "bash" shell outside of Windows, fix regression (diff) | |
| download | git-8972be02520e0b02c864c3c8fa7ed2271043f0fc.tar.gz git-8972be02520e0b02c864c3c8fa7ed2271043f0fc.zip | |
Merge branch 'ab/ci-musl-bash-fix' into maint-2.38
CI fix.
* ab/ci-musl-bash-fix:
CI: don't explicitly pick "bash" shell outside of Windows, fix regression
| -rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5262823eb1..4754c0719a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -261,10 +261,8 @@ jobs: - uses: actions/checkout@v3 - run: ci/install-dependencies.sh - run: ci/run-build-and-tests.sh - - name: print test failures + - run: ci/print-test-failures.sh if: failure() && env.FAILED_TEST_ARTIFACTS != '' - shell: bash - run: ci/print-test-failures.sh - name: Upload failed tests' directories if: failure() && env.FAILED_TEST_ARTIFACTS != '' uses: actions/upload-artifact@v2 @@ -297,10 +295,8 @@ jobs: if: matrix.vector.jobname == 'linux32' - run: ci/install-docker-dependencies.sh - run: ci/run-build-and-tests.sh - - name: print test failures + - run: ci/print-test-failures.sh if: failure() && env.FAILED_TEST_ARTIFACTS != '' - shell: bash - run: ci/print-test-failures.sh - name: Upload failed tests' directories if: failure() && env.FAILED_TEST_ARTIFACTS != '' uses: actions/upload-artifact@v1 |
