diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e26ed7ed..de0b2356 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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