Update README.md #134
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BigEndian | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
big-endian: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get the qemu container | |
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | |
- name: Run uname | |
run: uname -a | |
- name: Run tests on s390x/ubuntu | |
run: docker run --rm s390x/ubuntu bash -c "apt update && apt install -y gcc g++ make git && git clone https://github.com/kmilo17pet/QuarkTS.git --recursive && cd QuarkTS && make test" | |