We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test-32bit
libstdc++6:amd64
1 parent 64f2198 commit eaf2243Copy full SHA for eaf2243
.github/workflows/ci.yml
@@ -203,9 +203,21 @@ jobs:
203
steps:
204
- name: Prerequisites
205
run: |
206
- dpkg --add-architecture amd64 # For 64-bit Node.js, for actions.
+ prerequisites=(
207
+ build-essential
208
+ ca-certificates
209
+ cmake
210
+ curl
211
+ git
212
+ jq
213
+ libssl-dev
214
+ libstdc++6:amd64 # To support external 64-bit Node.js for actions.
215
+ pkgconf
216
+ )
217
+ dpkg --add-architecture amd64
218
apt-get update
- apt-get install --no-install-recommends -y build-essential ca-certificates cmake curl git jq libssl-dev libstdc++6:amd64 pkgconf
219
+ apt-get install --no-install-recommends -y -- "${prerequisites[@]}"
220
+ shell: bash
221
- uses: actions/checkout@v4
222
- uses: dtolnay/rust-toolchain@stable
223
with:
0 commit comments