Skip to content

Commit b20221c

Browse files
committed
[CI] Update to latest alpine linux container image
I'm not sure why we were using the `node` flavored ones.
1 parent 963b587 commit b20221c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
- name: test
219219
run: python check.py --binaryen-bin=out/bin
220220

221-
# Build with gcc 6.3 and run tests on Alpine Linux (inside chroot).
221+
# Build with gcc and run tests on Alpine Linux (inside docker container).
222222
# Note: Alpine uses musl libc.
223223
# Keep in sync with build_release.yml
224224
build-alpine:
@@ -230,7 +230,7 @@ jobs:
230230
submodules: true
231231
- name: start docker
232232
run: |
233-
docker run -w /src -dit --platform=linux/arm64 --name alpine -v $PWD:/src node:lts-alpine
233+
docker run -w /src -dit --platform=linux/arm64 --name alpine -v $PWD:/src alpine:3.21
234234
echo 'docker exec alpine "$@";' > ./alpine.sh
235235
chmod +x ./alpine.sh
236236

.github/workflows/create_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
${{ steps.archive-arm64.outputs.TARBALL }}
108108
${{ steps.archive-arm64.outputs.SHASUM }}
109109
110-
# Build with gcc 6.3 and run tests on Alpine Linux (inside chroot).
110+
# Build with gcc and run tests on Alpine Linux (inside docker container).
111111
# Note: Alpine uses musl libc.
112112
build-alpine:
113113
name: alpine
@@ -128,7 +128,7 @@ jobs:
128128
if [[ "${{ matrix.docker_platform }}" == "ubuntu-24.04-arm" ]]; then
129129
platform="--platform=linux/arm64"
130130
fi
131-
docker run -w /src -dit $platform --name alpine -v $PWD:/src node:lts-alpine
131+
docker run -w /src -dit $platform --name alpine -v $PWD:/src alpine:3.21
132132
echo 'docker exec alpine "$@";' > ./alpine.sh
133133
chmod +x ./alpine.sh
134134

0 commit comments

Comments
 (0)