From 5e7500cfb12ec20f0b6b35e2520c752f3f4c77cf Mon Sep 17 00:00:00 2001 From: natj Date: Tue, 27 Oct 2020 14:12:01 -0400 Subject: [PATCH] try gcc9 on osx as test build default --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4228b31..d4fb13af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ matrix: include: - os: osx osx_image: xcode10.1 - env: COMP_EVAL="OS=osx && COMP_CC=gcc-10 && COMP_CXX=g++-10" + env: COMP_EVAL="OS=osx && COMP_CC=gcc-9 && COMP_CXX=g++-9" language: generic - os: linux @@ -42,7 +42,7 @@ matrix: python: 3.8 allow_failures: - - env: COMP_EVAL="OS=linux && COMP_CC=gcc-7 && COMP_CXX=g++-7" + - env: COMP_EVAL="OS=linux && COMP_CC=gcc-7 && COMP_CXX=g++-7" #- env: COMP_EVAL="OS=linux && COMP_CC=clang-5.0 && COMP_CXX=clang++-5.0" @@ -61,7 +61,7 @@ before_install: #pre-install mpi - export CXX=${COMP_CXX} - export CC=${COMP_CC} - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install gcc@10 open-mpi fftw fmt; fi + - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install open-mpi fftw fmt; fi - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install -y libopenmpi-dev libhdf5-serial-dev hdf5-helpers openmpi-bin libblas-dev liblapack-dev; fi - export MPI="openmpi40" - export CC=mpicc