Skip to content

Commit 94fd085

Browse files
committed
Remove explicit compiler/language
They provide useless output to the screen since the GCC version is often overridden
1 parent 2109d17 commit 94fd085

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

.travis.yml

+16-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
language: cpp
21
dist: bionic
3-
compiler: gcc
42
sudo: required # apt-get done in before_install.sh
3+
language: minimal
54

65
# Only build master or PRs merging into master
76
branches:
@@ -11,21 +10,21 @@ branches:
1110
# List of configurations to check
1211
matrix:
1312
include:
14-
- os: linux
15-
env: FLIBCPP_DEV=ON GENERATOR=ninja
16-
addons:
17-
apt:
18-
packages:
19-
- python3-sphinx
20-
- valgrind
21-
- os: linux
22-
env: FLIBCPP_DEV=OFF GENERATOR=make
23-
FLIBCPP_FORTRAN_STD=f2003
24-
GCC_VERSION=8
25-
- os: linux
26-
env: FLIBCPP_DEV=OFF GENERATOR=make
27-
FLIBCPP_FORTRAN_STD=f2008
28-
GCC_VERSION=9
13+
- os: linux
14+
env: FLIBCPP_DEV=ON GENERATOR=ninja
15+
addons:
16+
apt:
17+
packages:
18+
- python3-sphinx
19+
- valgrind
20+
- os: linux
21+
env: FLIBCPP_DEV=OFF GENERATOR=make
22+
FLIBCPP_FORTRAN_STD=f2003
23+
GCC_VERSION=8
24+
- os: linux
25+
env: FLIBCPP_DEV=OFF GENERATOR=make
26+
FLIBCPP_FORTRAN_STD=f2008
27+
GCC_VERSION=9
2928
# Build phases
3029
before_install:
3130
- source ./scripts/travis/before_install.sh

scripts/travis/before_install.sh

+3-4
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@ fi
2020
if [ -n "${GCC_VERSION}" ]; then
2121
# Suffix for compilers and packages
2222
_GCCV="-${GCC_VERSION}"
23-
fi
24-
25-
sudo apt-get install gfortran${_GCCV} -y
2623

27-
if [ -n "${GCC_VERSION}" ]; then
24+
# Download GCC packages
2825
sudo apt-get install gcc${_GCCV} -y
2926
sudo apt-get install g++${_GCCV} -y
3027
fi
3128

29+
sudo apt-get install gfortran${_GCCV} -y
30+
3231
set +x
3332

3433
###############################################################################

0 commit comments

Comments
 (0)