mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-04 09:37:13 +02:00
Test Linux arm64 using qemu user emulation
This commit is contained in:
parent
aeaf9cefa7
commit
806c725ef6
1 changed files with 14 additions and 1 deletions
15
.travis.yml
15
.travis.yml
|
@ -1,10 +1,13 @@
|
||||||
|
# We require a full (virtual) machine to load the kernel module for
|
||||||
|
# binfmt support, which is needed to test other architectures besides
|
||||||
|
# x86 using qemu user emulation. (This will not work in a container.)
|
||||||
sudo: required
|
sudo: required
|
||||||
dist: trusty
|
dist: trusty
|
||||||
language: c
|
language: c
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make $FLAGS
|
- make $FLAGS
|
||||||
- make check $FLAGS
|
- make check $FLAGS $TEST_FLAGS
|
||||||
- make clean && git status --ignored --porcelain && test -z "$(git status --ignored --porcelain)"
|
- make clean && git status --ignored --porcelain && test -z "$(git status --ignored --porcelain)"
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -19,5 +22,15 @@ matrix:
|
||||||
packages:
|
packages:
|
||||||
- gcc-multilib
|
- gcc-multilib
|
||||||
|
|
||||||
|
- os: linux
|
||||||
|
env: FLAGS="CC=aarch64-linux-gnu-gcc" TEST_FLAGS="LDFLAGS=-static"
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- gcc-aarch64-linux-gnu
|
||||||
|
- libc6-dev-arm64-cross
|
||||||
|
- qemu-user-static
|
||||||
|
- binfmt-support
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue