1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-28 12:11:45 +02:00
libunwind-eh_elf/.travis.yml

19 lines
491 B
YAML
Raw Normal View History

sudo: required
2017-01-23 13:21:58 +01:00
language: c
compiler: gcc
2017-01-23 13:21:58 +01:00
env:
- TARGET=x86_64-linux-gnu
- TARGET=x86-linux-gnu
- TARGET=arm-linux-gnueabihf
- TARGET=aarch64-linux-gnu
2017-01-24 21:15:22 +01:00
- TARGET=mipsel-unknown-linux-gnu
2017-01-23 13:21:58 +01:00
# Currently experiencing build failures here
#- TARGET=powerpc64-linux-gnu
script:
- ./autogen.sh
- ./configure --target=$TARGET --host=$HOST
- make -j32
- sudo bash -c 'echo core.%p.%p > /proc/sys/kernel/core_pattern'
- ulimit -c unlimited
- if [ $TARGET == 'x86_64-linux-gnu' ]; then make check -j32; fi