File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ jobs:
217
217
- name : test
218
218
run : python check.py --binaryen-bin=out/bin
219
219
220
- # Build with gcc 6.3 and run tests on Alpine Linux (inside chroot ).
220
+ # Build with gcc and run tests on Alpine Linux (inside docker container ).
221
221
# Note: Alpine uses musl libc.
222
222
# Keep in sync with build_release.yml
223
223
build-alpine :
@@ -232,7 +232,7 @@ jobs:
232
232
submodules : true
233
233
- name : start docker
234
234
run : |
235
- docker run -w /src -dit --platform=linux/arm64 --name alpine -v $PWD:/src node:lts- alpine
235
+ docker run -w /src -dit --platform=linux/arm64 --name alpine -v $PWD:/src alpine:3.21.3
236
236
echo 'docker exec alpine "$@";' > ./alpine.sh
237
237
chmod +x ./alpine.sh
238
238
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ jobs:
101
101
${{ steps.archive-arm64.outputs.TARBALL }}
102
102
${{ steps.archive-arm64.outputs.SHASUM }}
103
103
104
- # Build with gcc 6.3 and run tests on Alpine Linux (inside chroot ).
104
+ # Build with gcc and run tests on Alpine Linux (inside docker container ).
105
105
# Note: Alpine uses musl libc.
106
106
build-alpine :
107
107
name : alpine
@@ -122,7 +122,7 @@ jobs:
122
122
if [[ "${{ matrix.docker_platform }}" == "ubuntu-24.04-arm" ]]; then
123
123
platform="--platform=linux/arm64"
124
124
fi
125
- docker run -w /src -dit $platform --name alpine -v $PWD:/src node:lts- alpine
125
+ docker run -w /src -dit $platform --name alpine -v $PWD:/src alpine:3.21.3
126
126
echo 'docker exec alpine "$@";' > ./alpine.sh
127
127
chmod +x ./alpine.sh
128
128
You can’t perform that action at this time.
0 commit comments