aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2020-03-28 17:52:21 -0700
committerMarco Poletti <poletti.marco@gmail.com>2020-03-28 17:52:21 -0700
commita4a0f05af85fd108c3e599abde63aab7a272eb54 (patch)
treeef1d6a7d62c8d891b4e97407dde507ee72e02ff8
parent57ae0e21351ad43ceb595714bb55986872d62061 (diff)
downloadgoogle-fruit-a4a0f05af85fd108c3e599abde63aab7a272eb54.tar.gz
Retire Bazel tests for Ubuntu 16.04, the Docker image now fails to build (and we have CI tests for 18.04 anyway).
-rw-r--r--.travis.yml6
-rwxr-xr-xextras/scripts/travis_yml_generator.py1
2 files changed, 0 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 2e61406..8517f90 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -117,12 +117,6 @@ matrix:
script: export OS=linux; export COMPILER='clang-7.0'; export STL='libstdc++';
export UBUNTU='18.10'; extras/scripts/postsubmit.sh DebugAsanUbsanNoPch
- compiler: gcc
- env: COMPILER=bazel UBUNTU=16.04
- install: export OS=linux; export COMPILER='bazel'; export UBUNTU='16.04'; extras/scripts/travis_ci_install_linux.sh
- os: linux
- script: export OS=linux; export COMPILER='bazel'; export UBUNTU='16.04'; extras/scripts/postsubmit.sh
- DebugPlain
- - compiler: gcc
env: COMPILER=gcc-5 UBUNTU=16.04 TEST=ReleasePlain
install: export OS=linux; export COMPILER='gcc-5'; export UBUNTU='16.04'; extras/scripts/travis_ci_install_linux.sh
os: linux
diff --git a/extras/scripts/travis_yml_generator.py b/extras/scripts/travis_yml_generator.py
index f02e279..48bdc7a 100755
--- a/extras/scripts/travis_yml_generator.py
+++ b/extras/scripts/travis_yml_generator.py
@@ -164,7 +164,6 @@ add_ubuntu_tests(ubuntu_version='18.10', compiler='clang-7.0', stl='libstdc++',
use_precompiled_headers_in_tests=False)
add_bazel_tests(ubuntu_version='18.04', smoke_tests=['DebugPlain'])
-add_bazel_tests(ubuntu_version='16.04')
# ASan/UBSan are disabled for all these, the analysis on later versions is better anyway.
# Also, in some combinations they wouldn't work.