From 8f36fd1374e2e0234c2ccc325fe65db1a6a5c07e Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Mon, 12 Feb 2018 09:37:37 -0800 Subject: [PATCH] ci: remove bazel job from Travis (#22170) This saves us an executor on Travis. Note that we still do a bazel build on travis when we run the integration tests under e2e_2. We expect that CircleCI is the only place we'll ever consume bazel-built artifacts. PR Close #22170 --- .travis.yml | 1 - scripts/ci/test-bazel.sh | 5 ----- scripts/ci/test.sh | 3 --- 3 files changed, 9 deletions(-) delete mode 100755 scripts/ci/test-bazel.sh diff --git a/.travis.yml b/.travis.yml index 4326581272..6309b272b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,7 +56,6 @@ env: - CI_MODE=aio - CI_MODE=aio_e2e AIO_SHARD=0 - CI_MODE=aio_e2e AIO_SHARD=1 - - CI_MODE=bazel matrix: fast_finish: true diff --git a/scripts/ci/test-bazel.sh b/scripts/ci/test-bazel.sh deleted file mode 100755 index 6377524236..0000000000 --- a/scripts/ci/test-bazel.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -set -u -e -o pipefail - -bazel build --config=ci packages/... diff --git a/scripts/ci/test.sh b/scripts/ci/test.sh index a72da1aca7..d8a73d8464 100755 --- a/scripts/ci/test.sh +++ b/scripts/ci/test.sh @@ -46,7 +46,4 @@ case ${CI_MODE} in aio_e2e) ${thisDir}/test-aio-e2e.sh ;; - bazel) - ${thisDir}/test-bazel.sh - ;; esac