1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-30 09:04:45 +00:00

Update Docker command to use --platform flag

This commit is contained in:
Michael Camilleri 2024-11-12 04:02:54 +09:00
parent e52575e23a
commit 70de8bf092
No known key found for this signature in database
GPG Key ID: 7EB218A48DF8B572

View File

@ -132,4 +132,4 @@ jobs:
- name: Do Qemu build and test
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker run --rm -v .:/janet s390x/ubuntu bash -c "apt-get -y update && apt-get -y install git build-essential && cd /janet && make -j3 && make test"
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"