Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use RBE on more Windows builders
  • Loading branch information
zanderso committed Feb 22, 2024
commit 73edafcaa9b2ca5b497b8009a127ddeef75bfd3d
42 changes: 36 additions & 6 deletions ci/builders/windows_android_aot_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@
"device_type=none",
"os=Windows-10"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--runtime-mode",
"profile",
"--android"
"--android",
"--no-goma",
"--rbe"
],
"name": "android_profile",
"ninja": {
Expand All @@ -45,11 +50,16 @@
"device_type=none",
"os=Windows-10"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--runtime-mode",
"profile",
"--android",
"--android-cpu=arm64"
"--android-cpu=arm64",
"--no-goma",
"--rbe"
],
"name": "android_profile_arm64",
"ninja": {
Expand All @@ -75,11 +85,16 @@
"device_type=none",
"os=Windows-10"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--runtime-mode",
"profile",
"--android",
"--android-cpu=x64"
"--android-cpu=x64",
"--no-goma",
"--rbe"
],
"name": "android_profile_x64",
"ninja": {
Expand All @@ -105,10 +120,15 @@
"device_type=none",
"os=Windows-10"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--runtime-mode",
"release",
"--android"
"--android",
"--no-goma",
"--rbe"
],
"name": "android_release",
"ninja": {
Expand All @@ -134,11 +154,16 @@
"device_type=none",
"os=Windows-10"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--runtime-mode",
"release",
"--android",
"--android-cpu=arm64"
"--android-cpu=arm64",
"--no-goma",
"--rbe"
],
"name": "android_release_arm64",
"ninja": {
Expand All @@ -164,11 +189,16 @@
"device_type=none",
"os=Windows-10"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--runtime-mode",
"release",
"--android",
"--android-cpu=x64"
"--android-cpu=x64",
"--no-goma",
"--rbe"
],
"name": "android_release_x64",
"ninja": {
Expand Down
21 changes: 15 additions & 6 deletions ci/builders/windows_arm_host_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,17 @@
"os=Windows-10"
],
"gclient_variables": {
"download_android_deps": false
"download_android_deps": false,
"use_rbe": true
},
"gn": [
"--runtime-mode",
"debug",
"--no-lto",
"--windows-cpu",
"arm64"
"arm64",
"--no-goma",
"--rbe"
],
"name": "host_debug_arm64",
"ninja": {
Expand Down Expand Up @@ -61,14 +64,17 @@
"os=Windows-10"
],
"gclient_variables": {
"download_android_deps": false
"download_android_deps": false,
"use_rbe": true
},
"gn": [
"--runtime-mode",
"profile",
"--no-lto",
"--windows-cpu",
"arm64"
"arm64",
"--no-goma",
"--rbe"
],
"name": "host_profile_arm64",
"ninja": {
Expand Down Expand Up @@ -97,15 +103,18 @@
"os=Windows-10"
],
"gclient_variables": {
"download_android_deps": false
"download_android_deps": false,
"use_rbe": true
},
"generators": {},
"gn": [
"--runtime-mode",
"release",
"--no-lto",
"--windows-cpu",
"arm64"
"arm64",
"--no-goma",
"--rbe"
],
"name": "host_release_arm64",
"ninja": {
Expand Down
21 changes: 15 additions & 6 deletions ci/builders/windows_host_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,15 @@
"os=Windows-10"
],
"gclient_variables": {
"download_android_deps": false
"download_android_deps": false,
"use_rbe": true
},
"gn": [
"--runtime-mode",
"debug",
"--no-lto"
"--no-lto",
"--no-goma",
"--rbe"
],
"name": "host_debug",
"ninja": {
Expand Down Expand Up @@ -73,12 +76,15 @@
"os=Windows-10"
],
"gclient_variables": {
"download_android_deps": false
"download_android_deps": false,
"use_rbe": true
},
"gn": [
"--runtime-mode",
"profile",
"--no-lto"
"--no-lto",
"--no-goma",
"--rbe"
],
"name": "host_profile",
"ninja": {
Expand Down Expand Up @@ -107,13 +113,16 @@
"os=Windows-10"
],
"gclient_variables": {
"download_android_deps": false
"download_android_deps": false,
"use_rbe": true
},
"generators": {},
"gn": [
"--runtime-mode",
"release",
"--no-lto"
"--no-lto",
"--no-goma",
"--rbe"
],
"name": "host_release",
"ninja": {
Expand Down