Skip to content

Commit

Permalink
Add github workflow for qemu + s390x
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpakin committed Sep 6, 2024
1 parent 9ffec43 commit 17da53d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,18 @@ jobs:
run: make RUN="qemu-arm -L /usr/arm-linux-gnueabi/" CC=arm-linux-gnueabi-gcc LD=arm-linux-gnueabi-gcc
- name: Test the project
run: make RUN="qemu-arm -L /usr/arm-linux-gnueabi/" SUBRUN="qemu-arm -L /usr/arm-linux-gnueabi/" test VERBOSE=1

test-s390x-linux:
name: Build and test s390x in qemu
runs-on: 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

0 comments on commit 17da53d

Please sign in to comment.