diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f823fec5aa..cd83942b96f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: