diff options
author | Jack Lloyd <[email protected]> | 2019-11-15 10:40:32 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-11-15 12:55:08 -0500 |
commit | 84e30745803b0054c95155d7c3d31b75f61c0b35 (patch) | |
tree | a5b2bc1160a9e6f3217e2d0ca6e45da836fbf4bc /src/scripts/ci/setup_travis.sh | |
parent | 865184972cbda7a3b6bd46c2ec0b399cbdde7b6e (diff) |
Add S390x build
Drop the MIPS build since main purpose of that is to test a big-endian
build with no special support (SIMD, etc), but s390x is better for this,
since it allows running the full test suite.
Diffstat (limited to 'src/scripts/ci/setup_travis.sh')
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index af0f29c10..fc11067ee 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -11,7 +11,7 @@ set -ev if [ "$TRAVIS_OS_NAME" = "linux" ]; then - if [ "$TRAVIS_ARCH" = "aarch64" ] || [ "$TRAVIS_ARCH" = "ppc64le" ]; then + if [ "$TRAVIS_ARCH" = "aarch64" ] || [ "$TRAVIS_ARCH" = "ppc64le" ] || [ "$TRAVIS_ARCH" = "s390x" ]; then sudo apt-get -qq update sudo apt-get install liblzma-dev libbz2-dev ccache |