Skip to content

Commit 5be11f3

Browse files
authored
Revert "[CI] Update to latest alpine linux container image. NFC" (#8390)
Reverts #7381 This change seems to cause the CI to fail, even though it passes the CI when it landed :(
1 parent 613bc8c commit 5be11f3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

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

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

.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 and run tests on Alpine Linux (inside docker container).
110+
# Build with gcc 6.3 and run tests on Alpine Linux (inside chroot).
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 alpine:3.23.3
131+
docker run -w /src -dit $platform --name alpine -v $PWD:/src node:lts-alpine
132132
echo 'docker exec alpine "$@";' > ./alpine.sh
133133
chmod +x ./alpine.sh
134134

0 commit comments

Comments
 (0)