Skip to content

Commit 3e0f0d6

Browse files
committedOct 30, 2022
lock docker image
1 parent 9ab1166 commit 3e0f0d6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎.github/workflows/build_test_deploy.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1284,18 +1284,19 @@ jobs:
12841284
target: 'i686-pc-windows-msvc'
12851285
- host: ubuntu-latest
12861286
target: 'x86_64-unknown-linux-gnu'
1287-
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
1287+
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2022-10-24-x64
12881288
build: >-
12891289
set -e &&
12901290
rustup toolchain install "${RUST_TOOLCHAIN}" &&
12911291
rustup default "${RUST_TOOLCHAIN}" &&
12921292
rustup target add x86_64-unknown-linux-gnu &&
12931293
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 &&
1294+
unset CC_x86_64_unknown_linux_gnu && unset CC &&
12941295
turbo run build-native --cache-dir=".turbo" -- --release --target x86_64-unknown-linux-gnu &&
12951296
strip packages/next-swc/native/next-swc.*.node
12961297
- host: ubuntu-latest
12971298
target: 'x86_64-unknown-linux-musl'
1298-
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
1299+
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2022-10-24-alpine
12991300
build: >-
13001301
set -e &&
13011302
rustup toolchain install "${RUST_TOOLCHAIN}" &&
@@ -1317,7 +1318,7 @@ jobs:
13171318
strip -x packages/next-swc/native/next-swc.*.node
13181319
- host: ubuntu-latest
13191320
target: 'aarch64-unknown-linux-gnu'
1320-
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
1321+
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2022-10-24-aarch64
13211322
build: >-
13221323
set -e &&
13231324
rustup toolchain install "${RUST_TOOLCHAIN}" &&
@@ -1368,7 +1369,7 @@ jobs:
13681369
${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip packages/next-swc/native/next-swc.*.node
13691370
- host: ubuntu-latest
13701371
target: 'aarch64-unknown-linux-musl'
1371-
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
1372+
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:stable-2022-10-24-alpine
13721373
build: >-
13731374
set -e &&
13741375
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 &&

0 commit comments

Comments
 (0)
Please sign in to comment.