Skip to content

Commit efdd237

Browse files
authored
Add a dedicated POWER9 build to the Travis CI (#2774)
* Add dedicated POWER9 build (using new syntax to ensure it runs as a P9-only containerized job rather than a VM that might end up on P8 hardware half of the time) * Bump gcc version for POWER9 build
1 parent 4573cb2 commit efdd237

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,23 @@ matrix:
7575
- TARGET_BOX=LINUX32
7676
- BTYPE="BINARY=32"
7777

78+
- os: linux
79+
arch: ppc64le
80+
dist: bionic
81+
compiler: gcc
82+
before_script:
83+
- sudo add-apt-repository 'ppa:ubuntu-toolchain-r/test' -y
84+
- sudo apt-get update
85+
- sudo apt-get install gcc-9 gfortran-9 -y
86+
script:
87+
- make QUIET_MAKE=1 BINARY=64 USE_OPENMP=1 CC=gcc-9 FC=gfortran-9
88+
- make -C test $COMMON_FLAGS $BTYPE
89+
- make -C ctest $COMMON_FLAGS $BTYPE
90+
- make -C utest $COMMON_FLAGS $BTYPE
91+
env:
92+
# for matrix annotation only
93+
- TARGET_BOX=PPC64LE_LINUX_P9
94+
7895
- os: linux
7996
compiler: gcc
8097
addons:

0 commit comments

Comments
 (0)