1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-28 06:07:43 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Calvin Rose
32922ec376 try older ubuntu version 2024-11-02 15:22:41 -05:00
Calvin Rose
9aae9f3add Check if -t option helps. 2024-11-02 15:11:20 -05:00

View File

@@ -125,11 +125,11 @@ jobs:
test-s390x-linux:
name: Build and test s390x in qemu
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@master
- 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 -t s390x/ubuntu bash -c "apt-get -y update && apt-get -y install git build-essential && cd /janet && make -j3 && make test"