Skip to content

Commit

Permalink
Try using just scripts for testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpakin committed Sep 6, 2024
1 parent 83b0bc6 commit 40c93d0
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,10 @@ jobs:
test-s390x-linux:
name: Build and test s390x in qemu
runs-on: ubuntu-latest
container:
image: s390x/ubuntu
steps:
- name: Checkout the repository
uses: actions/checkout@master
- name: Setup compiler
run: |
sudo apt-get update
sudo apt-get install build-essential git
- name: Compile the project
run: make clean && make
- name: Test the project
run: make test
- 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 -it s390x/ubuntu bash -c "apt-get -y update && apt-get -y install git build-essential && make -j3 && make test"

0 comments on commit 40c93d0

Please sign in to comment.