aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorMichael Camilleri <mike@inqk.net>2025-03-04 15:17:07 +0900
committerMichael Camilleri <mike@inqk.net>2025-03-04 15:17:07 +0900
commitd23e6614b18f7f2772959f6577e006b62a4a5a32 (patch)
treed156a44cd07569825b95074c2a6a925a96771074 /.github
parentUse simpler base image (diff)
Use Alpine Linux as the base image rather than Ubuntu
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 563e33b5..d6d4056a 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -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"