Skip to content

Commit

Permalink
TEST: Try to replace the x86_64 version of node with an i386 one
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Sep 13, 2024
1 parent dcdd662 commit 0a92e0d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ jobs:
runs-on: ubuntu-latest
container: i386/ubuntu:focal
steps:
- name: Try to replace `node` with an i386 version
shell: bash
run: |
mv /__e/node20 /__e/node20.x86_64 &&
mkdir /__e/node20 &&
curl -Lo /tmp/node.tar.gz https://unofficial-builds.nodejs.org/download/release/v20.17.0/node-v20.17.0-linux-x86.tar.gz &&
cd /__e/node20 &&
tar -x --strip-components=1 -f /tmp/node.tar.gz
- name: Upload fails
# shows 'exec /__e/node20/bin/node: no such file or directory'
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 0a92e0d

Please sign in to comment.