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

Unified Diff: masters/master.chromium.infra/master.cfg

Issue 1849113003: Add depot_tools builder to infra waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: add comments Created 4 years, 9 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: masters/master.chromium.infra/master.cfg
diff --git a/masters/master.chromium.infra/master.cfg b/masters/master.chromium.infra/master.cfg
index a0cc37de15db764af94c00bbbf25f0b67ce54d13..d0db4a578f27f949a24d2e693736896bd4ab7896 100644
--- a/masters/master.chromium.infra/master.cfg
+++ b/masters/master.chromium.infra/master.cfg
@@ -40,6 +40,7 @@ LUCI_GO_REPO_URL = (
'https://chromium.googlesource.com/external/github.com/luci/luci-go')
LUCI_GAE_REPO_URL = (
'https://chromium.googlesource.com/external/github.com/luci/gae')
+DEPOT_TOOLS_URL = 'https://chromium.googlesource.com/chromium/tools/depot_tools'
c['change_source'].extend([
gitiles_poller.GitilesPoller(
@@ -60,6 +61,12 @@ c['change_source'].extend([
branches=['master', 'go1'],
pollInterval=10,
revlinktmpl=LUCI_GO_REPO_URL+'/+/%s'),
+ gitiles_poller.GitilesPoller(
+ repo_url=DEPOT_TOOLS_URL,
+ project='depot_tools',
+ branches=['master'],
+ pollInterval=10,
+ revlinktmpl=DEPOT_TOOLS_URL+'/+/%s'),
])
####### BUILDERS
@@ -180,6 +187,12 @@ c['builders'].extend([
'factory': f_annotations.BaseFactory('infra/build_conda_cipd_pkg'),
'category': 'zconda',
},
+ {
+ 'name': 'depot_tools zip uploader',
+ 'slavebuilddir': 'depot_tools_uploader',
+ 'factory': f_annotations.BaseFactory('infra/depot_tools_builder'),
+ 'category': 'depot_tools',
+ },
])
####### SCHEDULERS
@@ -223,6 +236,14 @@ c['schedulers'].extend([
'luci-go-win64',
]
),
+ AnyBranchScheduler(
+ name='depot_tools-scheduler',
+ change_filter=ChangeFilter(project=['depot_tools']),
+ treeStableTimer=1,
+ builderNames=[
+ 'depot_tools zip uploader',
+ ]
+ ),
])
####### BUILDSLAVES
« no previous file with comments | « no previous file | masters/master.chromium.infra/slaves.cfg » ('j') | scripts/slave/recipes/infra/depot_tools_builder.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698