summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNamrata Bhave <Namrata.Bhave@ibm.com>2020-03-09 22:27:28 +0530
committerGitHub <noreply@github.com>2020-03-09 09:57:28 -0700
commit556a43da7a24533bb15e0e7507912199fa5e98b1 (patch)
treee22fae44719a95e90c0c5edbb37c251327ae8cf7
parent2738756bcb70ddfbb3f46e7aec9d9e46cc784bdf (diff)
downloadlibunwind-556a43da7a24533bb15e0e7507912199fa5e98b1.tar.gz
Adding s390x to Travis builds (#159)
-rw-r--r--.travis.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 4a74b4a1..7bf0f8d0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,6 +9,18 @@ env:
- TARGET=mipsel-unknown-linux-gnu
# Currently experiencing build failures here
#- TARGET=powerpc64-linux-gnu
+
+linux-s390x: &linux-s390x
+ os: linux
+ arch: s390x
+ env: TARGET=s390x-linux-gnu
+ script:
+ - ./autogen.sh
+ - ./configure
+ - make -j32
+ - ulimit -c unlimited
+ - make check -j32
+
script:
- ./autogen.sh
- ./configure --target=$TARGET --host=$HOST
@@ -16,3 +28,7 @@ script:
- 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
+
+jobs:
+ include:
+ - <<: *linux-s390x