From a41555685842b2b42509dcb9ba6f95c564e89e94 Mon Sep 17 00:00:00 2001 From: Philipp Wollermann Date: Wed, 30 Jun 2021 22:12:13 +0200 Subject: [PATCH] Remove ubuntu1604 from presubmit.yml Ubuntu 16.04 is end-of-life, we're going to remove it from Bazel CI. If you like you can add testing on `ubuntu2004` platform which we also support. --- .bazelci/presubmit.yml | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index ce36668..101cd29 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -1,32 +1,23 @@ --- platforms: - ubuntu1604: - build_flags: - - "--features=layering_check" - build_targets: - - "..." - test_flags: - - "--features=layering_check" - test_targets: - - "..." ubuntu1804: build_flags: - "--features=layering_check" build_targets: - - "..." + - "//..." test_flags: - "--features=layering_check" test_targets: - - "..." + - "//..." macos: build_flags: - "--features=layering_check" build_targets: - - "..." + - "//..." test_flags: - "--features=layering_check" test_targets: - - "..." + - "//..." windows: # Optional: use VS 2017 instead of 2015. environment: @@ -34,8 +25,8 @@ platforms: build_flags: - "--features=layering_check" build_targets: - - "..." + - "//..." test_flags: - "--features=layering_check" test_targets: - - "..." + - "//..."