Skip to content

Commit

Permalink
TO-DROP: Revert "ci(linux32): do make v4 of actions/upload-artifact
Browse files Browse the repository at this point in the history
… work"

Now only the upload-artifact@v4 in linux32 should fail.

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Sep 13, 2024
1 parent 36cde7d commit 3f915a3
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,11 @@ jobs:
jobname: ${{matrix.vector.jobname}}
distro: ${{matrix.vector.distro}}
runs-on: ubuntu-latest
container:
image: ${{matrix.vector.image}}
volumes:
# override /__e/node20 on 32-bit because it is 64-bit
- /tmp:/__e${{matrix.vector.jobname != 'linux32' && '-x86' || ''}}/node20
container: ${{matrix.vector.image}}
steps:
- name: prepare libc6 and node20 for actions
- name: prepare libc6 for actions
if: matrix.vector.jobname == 'linux32'
run: |
apt -q update && apt -q -y install libc6-amd64 lib64stdc++6 curl &&
NODE_URL=https://unofficial-builds.nodejs.org/download/release/v20.17.0/node-v20.17.0-linux-x86.tar.gz &&
curl -Lo /tmp/node.tar.gz $NODE_URL &&
tar -C /__e/node20 -x --strip-components=1 -f /tmp/node.tar.gz
run: apt -q update && apt -q -y install libc6-amd64 lib64stdc++6
- uses: actions/checkout@v4
# - run: ci/install-dependencies.sh
# - run: ci/run-build-and-tests.sh
Expand Down

0 comments on commit 3f915a3

Please sign in to comment.