1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-11-14 12:18:12 +01:00

Add Travis CI support

This commit is contained in:
Frederik Carlier 2017-01-23 13:21:58 +01:00 committed by Dave Watson
parent 1ec8d115ff
commit d9797d9562

14
.travis.yml Normal file
View file

@ -0,0 +1,14 @@
language: c
compiler: clang
env:
- TARGET=x86_64-linux-gnu
- TARGET=x86-linux-gnu
- TARGET=arm-linux-gnueabihf
- TARGET=aarch64-linux-gnu
# Currently experiencing build failures here
#- TARGET=powerpc64-linux-gnu
script:
- ./autogen.sh
- ./configure --target=$TARGET --host=$HOST
- make
- if [ $TARGET == 'x86_64-linux-gnu' ]; then make check; fi