From 7482b25f8b9000f9b5cf805a30b29e7578718714 Mon Sep 17 00:00:00 2001 From: Philipp Wollermann Date: Fri, 9 Jul 2021 18:59:30 +0200 Subject: [PATCH] Remove ubuntu1604 from presubmit.yml (#6715) * 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. * Add ubuntu2004 to presubmit.yml --- .bazelci/presubmit.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index a6e38fde2..33cb7c299 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -1,18 +1,18 @@ --- buildifier: latest platforms: - ubuntu1604: - build_targets: - - "..." - test_targets: - - "..." ubuntu1804: build_targets: - - "..." + - "//..." test_targets: - - "..." + - "//..." + ubuntu2004: + build_targets: + - "//..." + test_targets: + - "//..." macos: build_targets: - - "..." + - "//..." test_targets: - - "..." + - "//..."