diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-09-16 15:13:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-09-16 15:13:24 -0700 |
commit | af51e464bff32fb705ecc6bb6b3b72a02899103d (patch) | |
tree | b5a938033b1c9583961af7446b9c556c489057c0 | |
parent | d6bf6527ebfab4899d52d5662f3c5054195e6415 (diff) | |
parent | 90f2c7240ccc7fb349199b4ded6b47702b40331f (diff) |
Merge branch 'jc/ci-upload-artifact-and-linux32' into maint-2.46
CI started failing completely for linux32 jobs, as the step to
upload failed test directory uses GitHub actions that is deprecated
and is now disabled. Remove the step so at least we will know if
the tests are passing.
* jc/ci-upload-artifact-and-linux32:
ci: remove 'Upload failed tests' directories' step from linux32 jobs
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1ee0433acc..97f9b06310 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -365,12 +365,6 @@ jobs: with: name: failed-tests-${{matrix.vector.jobname}} path: ${{env.FAILED_TEST_ARTIFACTS}} - - name: Upload failed tests' directories - if: failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname == 'linux32' - uses: actions/upload-artifact@v1 # cannot be upgraded because Node.js Actions aren't supported in this container - with: - name: failed-tests-${{matrix.vector.jobname}} - path: ${{env.FAILED_TEST_ARTIFACTS}} static-analysis: needs: ci-config if: needs.ci-config.outputs.enabled == 'yes' |