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

Side by Side Diff: cr-buildbucket.cfg

Issue 1778583002: master.chromium.buildbucket.swarming: add infra trybots (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@config
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Defines buckets on cr-buildbucket.appspot.com, used by to schedule builds 1 # Defines buckets on cr-buildbucket.appspot.com, used by to schedule builds
2 # on buildbot. 2 # on buildbot.
3 # 3 #
4 # See http://luci-config.appspot.com/schemas/projects:buildbucket.cfg for 4 # See http://luci-config.appspot.com/schemas/projects:buildbucket.cfg for
5 # schema of this file and documentation. 5 # schema of this file and documentation.
6 # 6 #
7 # Please keep this list sorted by bucket name. 7 # Please keep this list sorted by bucket name.
8 8
9 buckets { 9 buckets {
10 name: "master.chromium.buildbucket.swarming" 10 name: "master.chromium.buildbucket.swarming"
11 acls { 11 acls {
12 role: READER 12 role: READER
13 group: "all" 13 group: "all"
14 } 14 }
15 acls { 15 acls {
16 role: SCHEDULER 16 role: SCHEDULER
17 group: "project-chromium-tryjob-access" 17 group: "project-chromium-tryjob-access"
18 } 18 }
19 swarming { 19 swarming {
20 hostname: "chromium-swarm.appspot.com" 20 hostname: "chromium-swarm.appspot.com"
21 common_swarming_tags: "allow_milo:1" 21 common_swarming_tags: "allow_milo:1"
22 url_format: "https://annotation-parser.appspot.com/swarming/build/{task_id}" 22 url_format: "https://annotation-parser.appspot.com/swarming/build/{task_id}"
23
23 builders { 24 builders {
24 name: "build_presubmit" 25 name: "build_presubmit"
25 dimensions { 26 dimensions {
26 key: "os" 27 key: "os"
27 value: "Linux" 28 value: "Linux"
28 } 29 }
29 recipe { 30 recipe {
30 repository: "https://chromium.googlesource.com/chromium/tools/build" 31 repository: "https://chromium.googlesource.com/chromium/tools/build"
31 name: "run_presubmit" 32 name: "run_presubmit"
32 properties: "repo_name:build" 33 properties: "repo_name:build"
33 properties: "path_config:kitchen" 34 properties: "path_config:kitchen"
34 properties: "mastername:tryserver.chromium.linux" 35 properties: "mastername:tryserver.chromium.linux"
35 properties: "buildername:build_presubmit" 36 properties: "buildername:build_presubmit"
36 properties: "slavename:fake_slave" 37 properties: "slavename:fake_slave"
37 } 38 }
38 } 39 }
40
41 builders {
42 name: "infra_presubmit"
43 dimensions {
44 key: "os"
45 value: "Ubuntu-14.04"
46 }
47 dimensions {
48 key: "cpu"
49 value: "x86-64"
50 }
51 recipe {
52 repository: "https://chromium.googlesource.com/chromium/tools/build"
53 name: "run_presubmit"
54 properties: "repo_name:infra"
55 properties: "path_config:kitchen"
56 properties: "runhooks:True"
57 properties: "mastername:tryserver.infra"
58 properties: "buildername:Infra Presubmit"
59 properties: "slavename:fake_slave"
60 }
61 }
62
63 builders {
64 name: "infra_linux64"
65 dimensions {
66 key: "os"
67 value: "Ubuntu-14.04"
68 }
69 dimensions {
70 key: "cpu"
71 value: "x86-64"
72 }
73 recipe {
74 repository: "https://chromium.googlesource.com/chromium/tools/build"
75 name: "infra/infra_repo_trybot"
76 properties: "repo_name:build"
77 properties: "path_config:kitchen"
78 properties: "mastername:tryserver.infra"
79 properties: "buildername:Infra Linux Trusty 64 Tester"
80 properties: "slavename:fake_slave"
81 }
82 }
83
84 builders {
85 name: "infra_mac"
86 dimensions {
87 key: "os"
88 value: "Mac-10.9"
89 }
90 dimensions {
91 key: "cpu"
92 value: "x86-64"
93 }
94 recipe {
95 repository: "https://chromium.googlesource.com/chromium/tools/build"
96 name: "infra/infra_repo_trybot"
97 properties: "repo_name:build"
98 properties: "path_config:kitchen"
99 properties: "mastername:tryserver.infra"
100 properties: "buildername:Infra Mac Tester"
101 properties: "slavename:fake_slave"
102 }
103 }
104
105 builders {
106 name: "infra_win"
107 dimensions {
108 key: "os"
109 value: "Windows-7-SP1"
110 }
111 dimensions {
112 key: "cpu"
113 value: "x86-64"
114 }
115 recipe {
116 repository: "https://chromium.googlesource.com/chromium/tools/build"
117 name: "infra/infra_repo_trybot"
118 properties: "repo_name:build"
119 properties: "path_config:kitchen"
120 properties: "mastername:tryserver.infra"
121 properties: "buildername:Infra Win Tester"
122 properties: "slavename:fake_slave"
123 }
124 }
39 } 125 }
40 } 126 }
41 127
42 buckets { 128 buckets {
43 name: "master.chromium.infra" 129 name: "master.chromium.infra"
44 acls { 130 acls {
45 role: READER 131 role: READER
46 group: "all" 132 group: "all"
47 } 133 }
48 acls { 134 acls {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 } 189 }
104 acls { 190 acls {
105 role: SCHEDULER 191 role: SCHEDULER
106 group: "project-chromium-tryjob-access" 192 group: "project-chromium-tryjob-access"
107 } 193 }
108 acls { 194 acls {
109 role: WRITER 195 role: WRITER
110 group: "service-account-chromium-tryserver" 196 group: "service-account-chromium-tryserver"
111 } 197 }
112 } 198 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698