aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorMichael Camilleri <mike@inqk.net>2025-03-04 15:19:44 +0900
committerMichael Camilleri <mike@inqk.net>2025-03-04 15:19:44 +0900
commit6e226e4073b33a802450120d242222b95c8a79fc (patch)
treeda2bfb28a430a955148bc6bdb5b18ca8f5831bc7 /.github
parentUse Alpine Linux as the base image rather than Ubuntu (diff)
Use sh rather than bash on Alpine Linux
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 d6d4056a..e99c3503 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 alpine bash -c "apk update && apk add --no-interactive git build-base && cd /janet && make -j3 && make test"
+ run: docker run --rm -v .:/janet --platform linux/s390x alpine sh -c "apk update && apk add --no-interactive git build-base && cd /janet && make -j3 && make test"