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

Unified Diff: masters/master.chromium.android.fyi/builders.pyl

Issue 2478413002: Move some non-tree closing bots on chromium.android to chromium.android.fyi (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « masters/master.chromium.android.fyi/Makefile ('k') | masters/master.chromium.android.fyi/master.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.android.fyi/builders.pyl
diff --git a/masters/master.chromium.android.fyi/builders.pyl b/masters/master.chromium.android.fyi/builders.pyl
new file mode 100644
index 0000000000000000000000000000000000000000..58494b7083cab4485d72f771cd7348ab2d2f5eae
--- /dev/null
+++ b/masters/master.chromium.android.fyi/builders.pyl
@@ -0,0 +1,129 @@
+{
+ "master_base_class": "Master1",
+ "master_port": 20100,
+ "master_port_alt": 25100,
+ "slave_port": 30100,
+ "pubsub_service_account_file": "service-account-luci-milo.json",
+ "templates": ["templates", "../master.chromium/templates"],
+
+ "default_remote_run_properties": {
+ "path_config": "kitchen",
+ },
+ "default_remote_run_repository": "https://chromium.googlesource.com/chromium/src.git",
+
+ "builders": {
jbudorick 2016/11/04 23:30:04 This should only move: - L Consumer - L Low-end
hinoka 2016/11/04 23:43:45 Only two? The rest of them look pretty red to me t
+ "Jelly Bean Tester": {
+ "recipe": "chromium",
+ "remote_run_sync_revision": True,
+ "remote_run_use_gitiles": True,
+ "use_remote_run": True,
+ "scheduler": None,
+ "slave_pools": ["jelly_bean_tester"],
+ "category": "3Testers",
+ "mergeRequests": True,
+ },
+ "Lollipop Consumer Tester": {
+ "recipe": "chromium",
+ "remote_run_sync_revision": True,
+ "remote_run_use_gitiles": True,
+ "use_remote_run": True,
+ "scheduler": None,
+ "slave_pools": ["lollipop_consumer"],
+ "category": "3Testers",
+ "mergeRequests": True,
+ },
+ "Lollipop Low-end Tester": {
+ "recipe": "chromium",
+ "remote_run_sync_revision": True,
+ "remote_run_use_gitiles": True,
+ "use_remote_run": True,
+ "scheduler": None,
+ "slave_pools": ["lollipop_low_end"],
+ "category": "3Testers",
+ "mergeRequests": True,
+ },
+ "Lollipop Tablet Tester": {
+ "recipe": "chromium",
+ "remote_run_sync_revision": True,
+ "remote_run_use_gitiles": True,
+ "use_remote_run": True,
+ "scheduler": None,
+ "slave_pools": ["lollipop_tablet"],
+ "category": "3Testers",
+ "mergeRequests": True,
+ },
+ "Marshmallow 64 bit Tester": {
+ "recipe": "chromium",
+ "remote_run_sync_revision": True,
+ "remote_run_use_gitiles": True,
+ "use_remote_run": True,
+ "scheduler": None,
+ "slave_pools": ["marshmallow_64"],
+ "category": "3Testers",
+ "mergeRequests": True,
+ },
+ "Marshmallow Tablet Tester": {
+ "recipe": "chromium",
+ "remote_run_sync_revision": True,
+ "remote_run_use_gitiles": True,
+ "use_remote_run": True,
+ "scheduler": None,
+ "slave_pools": ["marshmallow_tablet"],
+ "category": "3Testers",
+ "mergeRequests": True,
+ },
+ },
+
+ "schedulers": {},
+
+ "slave_pools": {
+ "jelly_bean_tester": {
+ "slave_data": {
+ "os": "linux",
+ "version": "trusty",
+ "bits": "64",
+ },
+ "slaves": ["build40-b1"],
+ },
+ "lollipop_consumer": {
+ "slave_data": {
+ "os": "linux",
+ "version": "trusty",
+ "bits": "64",
+ },
+ "slaves": ["build39-b1"],
+ },
+ "lollipop_low_end": {
+ "slave_data": {
+ "os": "linux",
+ "version": "trusty",
+ "bits": "64",
+ },
+ "slaves": ["build19-b1"],
+ },
+ "lollipop_tablet": {
+ "slave_data": {
+ "os": "linux",
+ "version": "trusty",
+ "bits": "64",
+ },
+ "slaves": ["build43-b1"],
+ },
+ "marshmallow_64": {
+ "slave_data": {
+ "os": "linux",
+ "version": "trusty",
+ "bits": "64",
+ },
+ "slaves": ["slave46-c1"],
+ },
+ "marshmallow_tablet": {
+ "slave_data": {
+ "os": "linux",
+ "version": "trusty",
+ "bits": "64",
+ },
+ "slaves": ["build44-b1"],
+ },
+ }
+}
« no previous file with comments | « masters/master.chromium.android.fyi/Makefile ('k') | masters/master.chromium.android.fyi/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698