mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-14 04:18:11 +01:00
Add Travis CI support
This commit is contained in:
parent
1ec8d115ff
commit
d9797d9562
1 changed files with 14 additions and 0 deletions
14
.travis.yml
Normal file
14
.travis.yml
Normal 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
|
Loading…
Reference in a new issue