Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(792)

Unified Diff: infra/bots/recipes/swarm_trigger.py

Issue 2284813002: Add Mac NDK asset, and fetch NDK on Android compile bots. (Closed)
Patch Set: rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: infra/bots/recipes/swarm_trigger.py
diff --git a/infra/bots/recipes/swarm_trigger.py b/infra/bots/recipes/swarm_trigger.py
index f49cd299f8b58f81d8df65612873cb7cbe2fea06..f512f770d6ec6ca5a6de3e1af5d78a9f87042df9 100644
--- a/infra/bots/recipes/swarm_trigger.py
+++ b/infra/bots/recipes/swarm_trigger.py
@@ -34,8 +34,7 @@ DEPS = [
TEST_BUILDERS = {
'client.skia': {
'skiabot-linux-swarm-000': [
- 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
- 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot',
+ 'Build-Mac-Clang-Arm64-Release-Android',
'Build-Mac-Clang-x86_64-Release',
'Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan',
'Build-Ubuntu-GCC-x86_64-Debug',
@@ -44,20 +43,22 @@ TEST_BUILDERS = {
'Build-Ubuntu-GCC-x86_64-Release-Trybot',
'Build-Win-MSVC-x86_64-Release',
'Build-Win-MSVC-x86_64-Release-Vulkan',
- 'Housekeeper-PerCommit',
'Housekeeper-Nightly-RecreateSKPs_Canary',
+ 'Housekeeper-PerCommit',
'Infra-PerCommit',
'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Trybot',
'Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs',
- 'Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release',
'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan',
- 'Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Release',
+ 'Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release',
'Test-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release',
+ 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot',
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN',
'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared',
+ 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
'Test-Win8-MSVC-ShuttleA-GPU-HD7770-x86_64-Release',
'Test-Win8-MSVC-ShuttleB-CPU-AVX2-x86_64-Release',
+ 'Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Release',
],
},
}
@@ -355,6 +356,10 @@ def compile_steps_swarm(api, builder_cfg, got_revision, infrabots_dir):
# Android bots require a toolchain.
if 'Android' in api.properties['buildername']:
cipd_packages.append(cipd_pkg(api, infrabots_dir, 'android_sdk'))
+ if 'Mac' in api.properties['buildername']:
+ cipd_packages.append(cipd_pkg(api, infrabots_dir, 'android_ndk_darwin'))
+ else:
+ cipd_packages.append(cipd_pkg(api, infrabots_dir, 'android_ndk_linux'))
# Windows bots require a toolchain.
if 'Win' in builder_name:

Powered by Google App Engine
This is Rietveld 408576698