diff options
author | Connor Shu <[email protected]> | 2018-08-06 10:27:56 -0700 |
---|---|---|
committer | Daniel Black <[email protected]> | 2018-08-21 14:38:40 +1000 |
commit | 0c1d9d28c43947ed590f0dd659289a6b50f2c36a (patch) | |
tree | 6b820a4d5ec8238705afdd90831d1c6152d21409 | |
parent | be45eaca8f1260f392974db882e21f3591e8923f (diff) | |
download | otp-0c1d9d28c43947ed590f0dd659289a6b50f2c36a.tar.gz otp-0c1d9d28c43947ed590f0dd659289a6b50f2c36a.tar.bz2 otp-0c1d9d28c43947ed590f0dd659289a6b50f2c36a.zip |
travis: Added Travis-CI support for IBM Power
Power64Dialyzer was taking longer than the
allowed travis limit.
Package differences are because the linux-ppc64le
test is on xenial rather than trusty.
-rw-r--r-- | .travis.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index ee724f8947..ae31170f68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,16 +36,42 @@ matrix: script: - ./scripts/build-otp - ./scripts/run-dialyzer + - env: Linux32 services: - docker script: - ./scripts/build-docker-otp 32 sh -c "scripts/build-otp release && ./otp_build tests && scripts/run-smoke-tests && bin/dialyzer --build_plt --apps erts kernel stdlib" + - env: Linux64SmokeTest script: - ./scripts/build-otp - ./otp_build tests - ./scripts/run-smoke-tests + + - env: Linux-ppc64le-SmokeTest + os: linux-ppc64le + script: + - ./scripts/build-otp + - ./otp_build tests + - ./scripts/run-smoke-tests + addons: + apt: + update: true + packages: + - autoconf + - libncurses-dev + - build-essential + - libssl-dev + - libwxgtk3.0-dev + - libgl1-mesa-dev + - libglu1-mesa-dev + - libpng3 + - default-jdk + - g++ + - xsltproc + - libxml2-utils + - env: Linux64Docbuild script: - ./scripts/build-otp docs |