1
0
mirror of https://github.com/janet-lang/janet synced 2025-04-10 09:16:38 +00:00

Use Alpine Linux as the base image rather than Ubuntu

This commit is contained in:
Michael Camilleri 2025-03-04 15:17:07 +09:00
parent ab6afa72fd
commit d23e6614b1
No known key found for this signature in database
GPG Key ID: 7EB218A48DF8B572

View File

@ -135,4 +135,4 @@ jobs:
- name: Enable qemu
run: docker run --privileged --rm tonistiigi/binfmt --install s390x
- name: Build and run on emulated architecture
run: docker run --rm -v .:/janet --platform linux/s390x ubuntu bash -c "apt-get -y update && apt-get -y install git build-essential && cd /janet && make -j3 && make test"
run: docker run --rm -v .:/janet --platform linux/s390x alpine bash -c "apk update && apk add --no-interactive git build-base && cd /janet && make -j3 && make test"