From 763828828e86412dc5a1fded273851051e7048ec Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Fri, 8 Dec 2023 14:11:46 -0800 Subject: [PATCH] Add CI jobs for 5.x and 6.x releases --- .bazelci/presubmit.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 7975bcb95..605be87dc 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -42,6 +42,28 @@ tasks: # Override the default worker strategy for remote builds (worker strategy # cannot be used with remote builds) - "--strategy=KotlinCompile=remote" + example-android-5.x: + name: "Example - Android using Bazel 5.x" + platform: ubuntu1804 + working_directory: examples/android + bazel: 5.4.1 + test_flags: + - "--incompatible_enable_android_toolchain_resolution" + - "--android_platforms=//:arm64-v8a" + - "--enable_bzlmod=false" + test_targets: + - //app:all + example-android-6.x: + name: "Example - Android using Bazel 6.x" + platform: ubuntu1804 + working_directory: examples/android + bazel: 6.4.0 + test_flags: + - "--incompatible_enable_android_toolchain_resolution" + - "--android_platforms=//:arm64-v8a" + - "--enable_bzlmod=false" + test_targets: + - //app:all example-android: name: "Example - Android" platform: ubuntu1804