From b57cdabd550760d0af7d42fc6a483e1ee7e24ffa Mon Sep 17 00:00:00 2001 From: Ulises Mendez Martinez Date: Tue, 27 Jun 2023 18:19:15 +0000 Subject: [PATCH] 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 --- BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BUILD.bazel b/BUILD.bazel index 440ac7e610b2..a20ac9aa540e 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -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"], )