Add Big Endian CI target
This commit is contained in:
parent
4d6c98115b
commit
215f246974
1 changed files with 20 additions and 0 deletions
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
|
@ -71,6 +71,26 @@ jobs:
|
||||||
- name: test
|
- name: test
|
||||||
run: |
|
run: |
|
||||||
make test
|
make test
|
||||||
|
linux-s390x:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: alpine.sh {0}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: jirutka/setup-alpine@v1
|
||||||
|
with:
|
||||||
|
arch: s390x
|
||||||
|
packages: "build-base make cmake"
|
||||||
|
- name: build
|
||||||
|
run: |
|
||||||
|
make
|
||||||
|
- name: stats
|
||||||
|
run: |
|
||||||
|
make stats
|
||||||
|
- name: test
|
||||||
|
run: |
|
||||||
|
make test
|
||||||
linux-gcc48:
|
linux-gcc48:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
|
|
Loading…
Reference in a new issue