Skip to content

Commit

Permalink
Reorganize test-32bit prerequisites to explain libstdc++6:amd64
Browse files Browse the repository at this point in the history
This uses the same array+comment style as in 8c71bd1 (GitoxideLabs#1672).
  • Loading branch information
EliahKagan committed Nov 17, 2024
1 parent 64f2198 commit eaf2243
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,21 @@ jobs:
steps:
- name: Prerequisites
run: |
dpkg --add-architecture amd64 # For 64-bit Node.js, for actions.
prerequisites=(
build-essential
ca-certificates
cmake
curl
git
jq
libssl-dev
libstdc++6:amd64 # To support external 64-bit Node.js for actions.
pkgconf
)
dpkg --add-architecture amd64
apt-get update
apt-get install --no-install-recommends -y build-essential ca-certificates cmake curl git jq libssl-dev libstdc++6:amd64 pkgconf
apt-get install --no-install-recommends -y -- "${prerequisites[@]}"
shell: bash
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
Expand Down

0 comments on commit eaf2243

Please sign in to comment.