ANDROID: Set arch attribute for allmodconfig builds

* This sets arch attribute for two builds:
  * kernel_x86_64_allmodconfig
  * kernel_arm_allmodconfig

Bug: 272164611
Change-Id: Ica02082ef53e1b08523b47b879716e94330fe5c4
Signed-off-by: Ulises Mendez Martinez <umendez@google.com>
This commit is contained in:
Ulises Mendez Martinez 2023-06-27 18:19:15 +00:00 committed by Yifan Hong
parent f63b2625af
commit b57cdabd55

View File

@ -567,6 +567,7 @@ kernel_build(
# Hack to actually check the build.
# Otherwise, Bazel thinks that there are no output files, and skip building.
outs = [".config"],
arch = "x86_64",
build_config = "build.config.allmodconfig.x86_64",
visibility = ["//visibility:private"],
)
@ -577,6 +578,7 @@ kernel_build(
# Hack to actually check the build.
# Otherwise, Bazel thinks that there are no output files, and skip building.
outs = [".config"],
arch = "arm",
build_config = "build.config.allmodconfig.arm",
visibility = ["//visibility:private"],
)