Travis-CI Arm64 build (#1261)
* Travis-CI Migration (#1230) * Travis-CI Migration * Travis-CI addition cmake Linux * Travis-CI cmake fix * Travis-CI Arm64 build
This commit is contained in:
parent
2c66acf4ee
commit
e2d1c5bf13
20
.travis.yml
20
.travis.yml
|
@ -21,10 +21,28 @@ os:
|
|||
matrix:
|
||||
fast_finish: true
|
||||
include:
|
||||
- name: "Linux arm64 clang C"
|
||||
arch: arm64
|
||||
os: linux
|
||||
compiler: clang
|
||||
language: c
|
||||
env:
|
||||
- PATH=$PATH:/usr/local/opt/binutils/bin
|
||||
script: make && make -C tests/unit test && make -C tests/regress test
|
||||
|
||||
- name: "Linux arm64 gcc C"
|
||||
arch: arm64
|
||||
os: linux
|
||||
compiler: gcc
|
||||
language: c
|
||||
env:
|
||||
- PATH=$PATH:/usr/local/opt/binutils/bin
|
||||
script: make && make -C tests/unit test && make -C tests/regress test
|
||||
|
||||
- name: "Linux 32bit"
|
||||
os: linux
|
||||
compiler: gcc
|
||||
env:
|
||||
env:
|
||||
- CFLAGS="-m32" LDFLAGS="-m32" LDFLAGS_STATIC="-m32" UNICORN_QEMU_FLAGS="--cpu=i386"
|
||||
- PATH=$PATH:/usr/local/opt/binutils/bin
|
||||
script: make && make -C tests/unit test && make -C tests/regress test
|
||||
|
|
Loading…
Reference in New Issue