Skip to content

Commit

Permalink
Update TRAVIS-CI (#60)
Browse files Browse the repository at this point in the history
Travis CI updates
  • Loading branch information
porteri authored Nov 19, 2019
1 parent bc61ea1 commit bc5012f
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ matrix:
packages:
- gfortran-7
- os: linux
dist: trusty
dist: xenial
env: GCC=8
before_install:
- curl -L https://github.com/Kitware/CMake/releases/download/v3.13.4/cmake-3.13.4-Linux-x86_64.tar.gz -o cmake-3.13.4-Linux-x86_64.tar.gz
Expand All @@ -32,20 +32,20 @@ matrix:
packages:
- gfortran-8
- os: linux
dist: trusty
env: GCC=9
dist: bionic
env: GCC=8
before_install:
- curl -L https://github.com/Kitware/CMake/releases/download/v3.13.4/cmake-3.13.4-Linux-x86_64.tar.gz -o cmake-3.13.4-Linux-x86_64.tar.gz
- tar xf cmake-3.13.4-Linux-x86_64.tar.gz
- export PATH=${PWD}/cmake-3.13.4-Linux-x86_64/bin:${PATH}
- curl -L https://github.com/Kitware/CMake/releases/download/v3.15.5/cmake-3.15.5-Linux-x86_64.tar.gz -o cmake-3.15.5-Linux-x86_64.tar.gz
- tar xf cmake-3.15.5-Linux-x86_64.tar.gz
- export PATH=${PWD}/cmake-3.15.5-Linux-x86_64/bin:${PATH}
- export FC=gfortran-${GCC}
- cmake --version
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: "ppa:ubuntu-toolchain-r/test"
packages:
- gfortran-9
- gfortran-8
- os: osx
osx_image: xcode10
env: GCC=8
Expand All @@ -62,6 +62,14 @@ matrix:
- brew upgrade cmake
- export FC=gfortran-${GCC}
- cmake --version
- os: osx
osx_image: xcode11
env: GCC=9
before_install:
- brew upgrade gcc
- brew upgrade cmake
- export FC=gfortran-${GCC}
- cmake --version
sudo: false
script:
- mkdir build && cd build && cmake ../ && make -j $(nproc) && ctest -j $(nproc)
Expand Down

0 comments on commit bc5012f

Please sign in to comment.