diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 06561243e4f0d7..8c113efaeb10dc 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -112,7 +112,7 @@ jobs: docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2022-10-24-alpine build: >- set -e && - apk add --no-cache libc6-compat pkgconfig && + apk add --no-cache libc6-compat pkgconfig openssl && rustup toolchain install "${RUST_TOOLCHAIN}" && rustup default "${RUST_TOOLCHAIN}" && rustup target add x86_64-unknown-linux-musl && @@ -150,7 +150,7 @@ jobs: docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2022-10-24-alpine build: >- set -e && - apk add --no-cache libc6-compat pkgconfig && + apk add --no-cache libc6-compat pkgconfig openssl && export JEMALLOC_SYS_WITH_LG_PAGE=16 && npm i -g "@napi-rs/cli@${NAPI_CLI_VERSION}" "turbo@${TURBO_VERSION}" && if [ ! -f $(dirname $(which yarn))/pnpm ]; then ln -s $(which yarn) $(dirname $(which yarn))/pnpm;fi && rustup toolchain install "${RUST_TOOLCHAIN}" &&