diff options
author | Philipp Wollermann <philwo@google.com> | 2021-07-09 18:59:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 09:59:30 -0700 |
commit | 7482b25f8b9000f9b5cf805a30b29e7578718714 (patch) | |
tree | da7f5317e8c5c9878cde21614294509d7fbae816 /.bazelci/presubmit.yml | |
parent | 3f77dc9a0e83f129e5284b86e24f7956d18826e5 (diff) | |
download | flatbuffers-7482b25f8b9000f9b5cf805a30b29e7578718714.tar.gz flatbuffers-7482b25f8b9000f9b5cf805a30b29e7578718714.tar.bz2 flatbuffers-7482b25f8b9000f9b5cf805a30b29e7578718714.zip |
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
Diffstat (limited to '.bazelci/presubmit.yml')
-rw-r--r-- | .bazelci/presubmit.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index a6e38fde..33cb7c29 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -1,18 +1,18 @@ --- buildifier: latest platforms: - ubuntu1604: + ubuntu1804: build_targets: - - "..." + - "//..." test_targets: - - "..." - ubuntu1804: + - "//..." + ubuntu2004: build_targets: - - "..." + - "//..." test_targets: - - "..." + - "//..." macos: build_targets: - - "..." + - "//..." test_targets: - - "..." + - "//..." |