1
0
mirror of https://github.com/janet-lang/janet synced 2025-06-28 08:03:00 +00:00

Merge pull request #1518 from pyrmont/bugfix.s390x-workflow

Update Docker command to use `--platform` flag
This commit is contained in:
Calvin Rose 2024-11-11 12:24:20 -08:00 committed by GitHub
commit 9f4497a5ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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"