Skip to content

[CI] Update to latest alpine linux container image. NFC #7381

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
- name: test
run: python check.py --binaryen-bin=out/bin

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
${{ steps.archive-arm64.outputs.TARBALL }}
${{ steps.archive-arm64.outputs.SHASUM }}

# Build with gcc 6.3 and run tests on Alpine Linux (inside chroot).
# Build with gcc and run tests on Alpine Linux (inside docker container).
# Note: Alpine uses musl libc.
build-alpine:
name: alpine
Expand All @@ -122,7 +122,7 @@ jobs:
if [[ "${{ matrix.docker_platform }}" == "ubuntu-24.04-arm" ]]; then
platform="--platform=linux/arm64"
fi
docker run -w /src -dit $platform --name alpine -v $PWD:/src node:lts-alpine
docker run -w /src -dit $platform --name alpine -v $PWD:/src alpine:3.21
echo 'docker exec alpine "$@";' > ./alpine.sh
chmod +x ./alpine.sh

Expand Down
Loading