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
This commit is contained in:
parent
2de0d4c1db
commit
8f36fd1374
|
@ -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
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -u -e -o pipefail
|
||||
|
||||
bazel build --config=ci packages/...
|
|
@ -46,7 +46,4 @@ case ${CI_MODE} in
|
|||
aio_e2e)
|
||||
${thisDir}/test-aio-e2e.sh
|
||||
;;
|
||||
bazel)
|
||||
${thisDir}/test-bazel.sh
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue