summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-05-30 05:04:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-05-30 05:04:08 (GMT)
commit6105fee3fd7002c7e51932540f723b02885a84e5 (patch)
tree98f5faf2cf09bec42628e115ce321a05c3db1720 /ci
parenta4eae17c2c3f898d2838000c5f1b7c7d66c62316 (diff)
parent37fa4b3c78f465a53a5e4c6af86255be317cbfda (diff)
downloadgit-6105fee3fd7002c7e51932540f723b02885a84e5.zip
git-6105fee3fd7002c7e51932540f723b02885a84e5.tar.gz
git-6105fee3fd7002c7e51932540f723b02885a84e5.tar.bz2
Merge branch 'nd/travis-gcc-8'
Developer support. Use newer GCC on one of the builds done at TravisCI.org to get more warnings and errors diagnosed. * nd/travis-gcc-8: travis-ci: run gcc-8 on linux-gcc jobs
Diffstat (limited to 'ci')
-rwxr-xr-xci/lib-travisci.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/lib-travisci.sh b/ci/lib-travisci.sh
index 109ef28..ceecc88 100755
--- a/ci/lib-travisci.sh
+++ b/ci/lib-travisci.sh
@@ -99,6 +99,9 @@ export DEFAULT_TEST_TARGET=prove
export GIT_PROVE_OPTS="--timer --jobs 3 --state=failed,slow,save"
export GIT_TEST_OPTS="--verbose-log -x"
export GIT_TEST_CLONE_2GB=YesPlease
+if [ "$jobname" = linux-gcc ]; then
+ export CC=gcc-8
+fi
case "$jobname" in
linux-clang|linux-gcc)