1
0
mirror of https://github.com/janet-lang/janet synced 2025-03-11 10:58:09 +00:00

Use simpler base image

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

View File

@ -132,17 +132,7 @@ jobs:
steps:
- name: Checkout the repository
uses: actions/checkout@master
- name: Do Qemu build and test
uses: uraimo/run-on-arch-action@v3
with:
arch: s390x
distro: ubuntu_latest
dockerRunArgs: |
--volume ".:/janet"
install: |
apt-get -y update
apt-get -y install git build-essential
run: |
cd /janet
make -j3
make test
- 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"