Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 1 | # Defines jobs on luci-scheduler.appspot.com. |
| 2 | # |
| 3 | # For schema of this file and documentation see ProjectConfig message in |
| 4 | # |
| 5 | # https://chromium.googlesource.com/infra/luci/luci-go/+/master/scheduler/appengine/messages/config.proto |
| 6 | |
| 7 | acl_sets { |
| 8 | name: "default" |
| 9 | acls { |
| 10 | role: READER |
| 11 | granted_to: "group:project-r8-readers" |
| 12 | } |
| 13 | acls { |
| 14 | role: OWNER |
| 15 | granted_to: "group:project-r8-admins" |
| 16 | } |
| 17 | } |
| 18 | |
Rico Wind | b873c64 | 2019-04-15 11:07:39 +0200 | [diff] [blame] | 19 | # The format of this file is important, we have a hackish parsing to trigger |
| 20 | # builds in tools/trigger.py |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 21 | trigger { |
| 22 | id: "master-gitiles-trigger" |
| 23 | acl_sets: "default" |
| 24 | gitiles: { |
Rico Wind | ca1ce67 | 2019-02-20 12:27:30 +0100 | [diff] [blame] | 25 | repo: "https://r8.googlesource.com/r8" |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 26 | refs: "refs/heads/master" |
| 27 | } |
Rico Wind | 3ddc6b0 | 2019-02-28 13:35:04 +0100 | [diff] [blame] | 28 | triggers: "archive" |
Rico Wind | 2651745 | 2019-02-22 12:45:38 +0100 | [diff] [blame] | 29 | triggers: "linux" |
Rico Wind | d478c83 | 2020-09-11 12:06:34 +0200 | [diff] [blame] | 30 | triggers: "linux_horizontal" |
Rico Wind | 2651745 | 2019-02-22 12:45:38 +0100 | [diff] [blame] | 31 | triggers: "linux-android-4.0.4" |
| 32 | triggers: "linux-android-4.4.4" |
| 33 | triggers: "linux-android-5.1.1" |
| 34 | triggers: "linux-android-6.0.1" |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 35 | triggers: "linux-android-7.0.0" |
Rico Wind | 6fb7ed9 | 2019-03-26 15:11:56 +0100 | [diff] [blame] | 36 | triggers: "linux-android-8.1.0" |
| 37 | triggers: "linux-android-9.0.0" |
clementbera | 97d5cce | 2019-11-22 15:09:27 +0100 | [diff] [blame] | 38 | triggers: "linux-android-10.0.0" |
Rico Wind | 55e9a9a | 2019-04-04 11:18:23 +0200 | [diff] [blame] | 39 | triggers: "linux-run-on-as-app" |
Morten Krogh-Jespersen | 603cc22 | 2019-11-05 12:51:26 +0100 | [diff] [blame] | 40 | triggers: "linux-run-on-as-app-recompilation" |
Rico Wind | 3ddc6b0 | 2019-02-28 13:35:04 +0100 | [diff] [blame] | 41 | triggers: "linux-internal" |
Rico Wind | 5ffe782 | 2019-03-01 06:52:36 +0100 | [diff] [blame] | 42 | triggers: "linux-jctf" |
| 43 | triggers: "r8cf-linux-jctf" |
Rico Wind | 2651745 | 2019-02-22 12:45:38 +0100 | [diff] [blame] | 44 | triggers: "windows" |
Rico Wind | 2651745 | 2019-02-22 12:45:38 +0100 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | trigger { |
Rico Wind | 1cd21b0 | 2019-08-14 13:26:21 +0200 | [diff] [blame] | 48 | id: "desugar_library_trigger" |
| 49 | acl_sets: "default" |
Rico Wind | e8b3136 | 2019-08-14 13:51:53 +0200 | [diff] [blame] | 50 | gitiles: { |
Rico Wind | 4412c2a | 2019-08-15 09:14:04 +0200 | [diff] [blame] | 51 | repo: "https://github.googlesource.com/google/desugar_jdk_libs" |
| 52 | refs: "refs/heads/master" |
Rico Wind | e8b3136 | 2019-08-14 13:51:53 +0200 | [diff] [blame] | 53 | } |
Rico Wind | 1cd21b0 | 2019-08-14 13:26:21 +0200 | [diff] [blame] | 54 | triggers: "archive_lib_desugar" |
| 55 | } |
| 56 | |
| 57 | trigger { |
Rico Wind | 2651745 | 2019-02-22 12:45:38 +0100 | [diff] [blame] | 58 | id: "branch-gitiles-trigger" |
| 59 | acl_sets: "default" |
| 60 | gitiles: { |
| 61 | repo: "https://r8.googlesource.com/r8" |
Søren Gjesse | 77cb3f4 | 2019-09-24 12:56:21 +0200 | [diff] [blame] | 62 | # Version branches are named d8-x.y (up until d8-1.5) or just x.y (from 1.6) |
Rico Wind | 14da044 | 2020-08-05 14:37:43 +0200 | [diff] [blame] | 63 | refs: "regexp:refs/heads/(?:d8-)?[0-9]+\\.[0-9]+(\\.[0-9]+)?" |
Rico Wind | 4678548 | 2019-09-26 11:28:26 +0200 | [diff] [blame] | 64 | path_regexps: "src/main/java/com/android/tools/r8/Version.java" |
Rico Wind | 2651745 | 2019-02-22 12:45:38 +0100 | [diff] [blame] | 65 | } |
Rico Wind | 3ddc6b0 | 2019-02-28 13:35:04 +0100 | [diff] [blame] | 66 | triggers: "archive_release" |
Rico Wind | 2651745 | 2019-02-22 12:45:38 +0100 | [diff] [blame] | 67 | triggers: "linux-android-4.0.4_release" |
| 68 | triggers: "linux-android-4.4.4_release" |
| 69 | triggers: "linux-android-5.1.1_release" |
| 70 | triggers: "linux-android-6.0.1_release" |
| 71 | triggers: "linux-android-7.0.0_release" |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 72 | triggers: "linux-android-8.1.0_release" |
| 73 | triggers: "linux-android-9.0.0_release" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 74 | triggers: "linux-android-10.0.0_release" |
Rico Wind | dfd59ab | 2019-08-07 10:00:16 +0200 | [diff] [blame] | 75 | triggers: "linux-internal_release" |
| 76 | triggers: "linux-jctf_release" |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 77 | triggers: "linux-run-on-as-app_release" |
Rico Wind | dfd59ab | 2019-08-07 10:00:16 +0200 | [diff] [blame] | 78 | triggers: "linux_release" |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 79 | triggers: "r8cf-linux-jctf_release" |
Rico Wind | 25205cb | 2019-05-06 15:31:25 +0200 | [diff] [blame] | 80 | triggers: "windows_release" |
| 81 | } |
| 82 | |
Rico Wind | dfd59ab | 2019-08-07 10:00:16 +0200 | [diff] [blame] | 83 | |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 84 | job { |
| 85 | id: "archive" |
| 86 | acl_sets: "default" |
Rico Wind | 27906cf | 2019-03-06 14:53:36 +0100 | [diff] [blame] | 87 | triggering_policy: { |
| 88 | max_concurrent_invocations: 3 |
Rico Wind | c7643d5 | 2019-03-15 08:38:59 +0100 | [diff] [blame] | 89 | max_batch_size: 1 |
Rico Wind | 27906cf | 2019-03-06 14:53:36 +0100 | [diff] [blame] | 90 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 91 | buildbucket { |
| 92 | server: "cr-buildbucket.appspot.com" |
| 93 | bucket: "luci.r8.ci" |
| 94 | builder: "archive" |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | job { |
| 99 | id: "archive_release" |
| 100 | acl_sets: "default" |
Rico Wind | c7643d5 | 2019-03-15 08:38:59 +0100 | [diff] [blame] | 101 | triggering_policy: { |
| 102 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 103 | max_concurrent_invocations: 3 |
Rico Wind | c7643d5 | 2019-03-15 08:38:59 +0100 | [diff] [blame] | 104 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 105 | buildbucket { |
| 106 | server: "cr-buildbucket.appspot.com" |
| 107 | bucket: "luci.r8.ci" |
| 108 | builder: "archive_release" |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | job { |
Rico Wind | 1cd21b0 | 2019-08-14 13:26:21 +0200 | [diff] [blame] | 113 | id: "archive_lib_desugar" |
| 114 | acl_sets: "default" |
| 115 | triggering_policy: { |
| 116 | max_concurrent_invocations: 1 |
| 117 | max_batch_size: 1 |
| 118 | } |
| 119 | buildbucket { |
| 120 | server: "cr-buildbucket.appspot.com" |
| 121 | bucket: "luci.r8.ci" |
| 122 | builder: "archive_lib_desugar" |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | job { |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 127 | id: "linux" |
| 128 | acl_sets: "default" |
Rico Wind | c7643d5 | 2019-03-15 08:38:59 +0100 | [diff] [blame] | 129 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 130 | max_concurrent_invocations: 6 |
Rico Wind | c7643d5 | 2019-03-15 08:38:59 +0100 | [diff] [blame] | 131 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 132 | buildbucket { |
| 133 | server: "cr-buildbucket.appspot.com" |
| 134 | bucket: "luci.r8.ci" |
| 135 | builder: "linux" |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | job { |
Rico Wind | d478c83 | 2020-09-11 12:06:34 +0200 | [diff] [blame] | 140 | id: "linux_horizontal" |
| 141 | acl_sets: "default" |
| 142 | triggering_policy: { |
| 143 | max_concurrent_invocations: 3 |
| 144 | } |
| 145 | buildbucket { |
| 146 | server: "cr-buildbucket.appspot.com" |
| 147 | bucket: "luci.r8.ci" |
| 148 | builder: "linux_horizontal" |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | job { |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 153 | id: "linux-android-4.0.4" |
| 154 | acl_sets: "default" |
Rico Wind | c7643d5 | 2019-03-15 08:38:59 +0100 | [diff] [blame] | 155 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 156 | max_concurrent_invocations: 6 |
Rico Wind | c7643d5 | 2019-03-15 08:38:59 +0100 | [diff] [blame] | 157 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 158 | buildbucket { |
| 159 | server: "cr-buildbucket.appspot.com" |
| 160 | bucket: "luci.r8.ci" |
| 161 | builder: "linux-android-4.0.4" |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | job { |
| 166 | id: "linux-android-4.0.4_release" |
| 167 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 168 | triggering_policy: { |
| 169 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 170 | max_concurrent_invocations: 3 |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 171 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 172 | buildbucket { |
| 173 | server: "cr-buildbucket.appspot.com" |
| 174 | bucket: "luci.r8.ci" |
| 175 | builder: "linux-android-4.0.4_release" |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | job { |
| 180 | id: "linux-android-4.4.4" |
| 181 | acl_sets: "default" |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 182 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 183 | max_concurrent_invocations: 6 |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 184 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 185 | buildbucket { |
| 186 | server: "cr-buildbucket.appspot.com" |
| 187 | bucket: "luci.r8.ci" |
| 188 | builder: "linux-android-4.4.4" |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | job { |
| 193 | id: "linux-android-4.4.4_release" |
| 194 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 195 | triggering_policy: { |
| 196 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 197 | max_concurrent_invocations: 3 |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 198 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 199 | buildbucket { |
| 200 | server: "cr-buildbucket.appspot.com" |
| 201 | bucket: "luci.r8.ci" |
| 202 | builder: "linux-android-4.4.4_release" |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | job { |
| 207 | id: "linux-android-5.1.1" |
| 208 | acl_sets: "default" |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 209 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 210 | max_concurrent_invocations: 6 |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 211 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 212 | buildbucket { |
| 213 | server: "cr-buildbucket.appspot.com" |
| 214 | bucket: "luci.r8.ci" |
| 215 | builder: "linux-android-5.1.1" |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | job { |
| 220 | id: "linux-android-5.1.1_release" |
| 221 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 222 | triggering_policy: { |
| 223 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 224 | max_concurrent_invocations: 3 |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 225 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 226 | buildbucket { |
| 227 | server: "cr-buildbucket.appspot.com" |
| 228 | bucket: "luci.r8.ci" |
| 229 | builder: "linux-android-5.1.1_release" |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | job { |
| 234 | id: "linux-android-6.0.1" |
| 235 | acl_sets: "default" |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 236 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 237 | max_concurrent_invocations: 6 |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 238 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 239 | buildbucket { |
| 240 | server: "cr-buildbucket.appspot.com" |
| 241 | bucket: "luci.r8.ci" |
| 242 | builder: "linux-android-6.0.1" |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | job { |
| 247 | id: "linux-android-6.0.1_release" |
| 248 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 249 | triggering_policy: { |
| 250 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 251 | max_concurrent_invocations: 3 |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 252 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 253 | buildbucket { |
| 254 | server: "cr-buildbucket.appspot.com" |
| 255 | bucket: "luci.r8.ci" |
| 256 | builder: "linux-android-6.0.1_release" |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | job { |
| 261 | id: "linux-android-7.0.0" |
| 262 | acl_sets: "default" |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 263 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 264 | max_concurrent_invocations: 6 |
Rico Wind | 892b37c | 2019-03-20 12:34:11 +0100 | [diff] [blame] | 265 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 266 | buildbucket { |
| 267 | server: "cr-buildbucket.appspot.com" |
| 268 | bucket: "luci.r8.ci" |
| 269 | builder: "linux-android-7.0.0" |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | job { |
| 274 | id: "linux-android-7.0.0_release" |
| 275 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 276 | triggering_policy: { |
| 277 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 278 | max_concurrent_invocations: 3 |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 279 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 280 | buildbucket { |
| 281 | server: "cr-buildbucket.appspot.com" |
| 282 | bucket: "luci.r8.ci" |
| 283 | builder: "linux-android-7.0.0_release" |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | job { |
Rico Wind | 6fb7ed9 | 2019-03-26 15:11:56 +0100 | [diff] [blame] | 288 | id: "linux-android-8.1.0" |
| 289 | acl_sets: "default" |
| 290 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 291 | max_concurrent_invocations: 6 |
Rico Wind | 6fb7ed9 | 2019-03-26 15:11:56 +0100 | [diff] [blame] | 292 | } |
| 293 | buildbucket { |
| 294 | server: "cr-buildbucket.appspot.com" |
| 295 | bucket: "luci.r8.ci" |
| 296 | builder: "linux-android-8.1.0" |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | job { |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 301 | id: "linux-android-8.1.0_release" |
| 302 | acl_sets: "default" |
| 303 | triggering_policy: { |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 304 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 305 | max_concurrent_invocations: 3 |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 306 | } |
| 307 | buildbucket { |
| 308 | server: "cr-buildbucket.appspot.com" |
| 309 | bucket: "luci.r8.ci" |
| 310 | builder: "linux-android-8.1.0_release" |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | |
| 315 | job { |
Rico Wind | 6fb7ed9 | 2019-03-26 15:11:56 +0100 | [diff] [blame] | 316 | id: "linux-android-9.0.0" |
| 317 | acl_sets: "default" |
| 318 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 319 | max_concurrent_invocations: 6 |
Rico Wind | 6fb7ed9 | 2019-03-26 15:11:56 +0100 | [diff] [blame] | 320 | } |
| 321 | buildbucket { |
| 322 | server: "cr-buildbucket.appspot.com" |
| 323 | bucket: "luci.r8.ci" |
| 324 | builder: "linux-android-9.0.0" |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | job { |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 329 | id: "linux-android-9.0.0_release" |
| 330 | acl_sets: "default" |
| 331 | triggering_policy: { |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 332 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 333 | max_concurrent_invocations: 3 |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 334 | } |
| 335 | buildbucket { |
| 336 | server: "cr-buildbucket.appspot.com" |
| 337 | bucket: "luci.r8.ci" |
| 338 | builder: "linux-android-9.0.0_release" |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | job { |
clementbera | 97d5cce | 2019-11-22 15:09:27 +0100 | [diff] [blame] | 343 | id: "linux-android-10.0.0" |
| 344 | acl_sets: "default" |
| 345 | triggering_policy: { |
Rico Wind | 13aa5b4 | 2020-06-24 09:48:49 +0200 | [diff] [blame] | 346 | max_concurrent_invocations: 6 |
clementbera | 97d5cce | 2019-11-22 15:09:27 +0100 | [diff] [blame] | 347 | } |
| 348 | buildbucket { |
| 349 | server: "cr-buildbucket.appspot.com" |
| 350 | bucket: "luci.r8.ci" |
| 351 | builder: "linux-android-10.0.0" |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | job { |
| 356 | id: "linux-android-10.0.0_release" |
| 357 | acl_sets: "default" |
| 358 | triggering_policy: { |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 359 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 360 | max_concurrent_invocations: 3 |
clementbera | 97d5cce | 2019-11-22 15:09:27 +0100 | [diff] [blame] | 361 | } |
| 362 | buildbucket { |
| 363 | server: "cr-buildbucket.appspot.com" |
| 364 | bucket: "luci.r8.ci" |
| 365 | builder: "linux-android-10.0.0_release" |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | job { |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 370 | id: "linux-internal" |
| 371 | acl_sets: "default" |
| 372 | buildbucket { |
| 373 | server: "cr-buildbucket.appspot.com" |
| 374 | bucket: "luci.r8.ci" |
| 375 | builder: "linux-internal" |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | job { |
| 380 | id: "linux-internal_release" |
| 381 | acl_sets: "default" |
| 382 | buildbucket { |
| 383 | server: "cr-buildbucket.appspot.com" |
| 384 | bucket: "luci.r8.ci" |
| 385 | builder: "linux-internal_release" |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | job { |
Rico Wind | 55e9a9a | 2019-04-04 11:18:23 +0200 | [diff] [blame] | 390 | id: "linux-run-on-as-app" |
| 391 | acl_sets: "default" |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 392 | triggering_policy: { |
| 393 | max_concurrent_invocations: 3 |
| 394 | } |
Rico Wind | 55e9a9a | 2019-04-04 11:18:23 +0200 | [diff] [blame] | 395 | buildbucket { |
| 396 | server: "cr-buildbucket.appspot.com" |
| 397 | bucket: "luci.r8.ci" |
| 398 | builder: "linux-run-on-as-app" |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | job { |
Morten Krogh-Jespersen | c42eace | 2019-11-06 09:47:22 +0100 | [diff] [blame] | 403 | id: "linux-run-on-as-app-recompilation" |
| 404 | acl_sets: "default" |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 405 | triggering_policy: { |
| 406 | max_concurrent_invocations: 3 |
| 407 | } |
Morten Krogh-Jespersen | c42eace | 2019-11-06 09:47:22 +0100 | [diff] [blame] | 408 | buildbucket { |
| 409 | server: "cr-buildbucket.appspot.com" |
| 410 | bucket: "luci.r8.ci" |
| 411 | builder: "linux-run-on-as-app-recompilation" |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | job { |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 416 | id: "linux-run-on-as-app_release" |
| 417 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 418 | triggering_policy: { |
| 419 | max_batch_size: 1 |
Rico Wind | 3ed7168 | 2020-06-24 12:49:36 +0200 | [diff] [blame] | 420 | max_concurrent_invocations: 3 |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 421 | } |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 422 | buildbucket { |
| 423 | server: "cr-buildbucket.appspot.com" |
| 424 | bucket: "luci.r8.ci" |
| 425 | builder: "linux-run-on-as-app_release" |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | |
| 430 | job { |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 431 | id: "linux-jctf" |
| 432 | acl_sets: "default" |
| 433 | buildbucket { |
| 434 | server: "cr-buildbucket.appspot.com" |
| 435 | bucket: "luci.r8.ci" |
| 436 | builder: "linux-jctf" |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | job { |
| 441 | id: "linux-jctf_release" |
| 442 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 443 | triggering_policy: { |
| 444 | max_batch_size: 1 |
| 445 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 446 | buildbucket { |
| 447 | server: "cr-buildbucket.appspot.com" |
| 448 | bucket: "luci.r8.ci" |
| 449 | builder: "linux-jctf_release" |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | job { |
| 454 | id: "linux_release" |
| 455 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 456 | triggering_policy: { |
| 457 | max_batch_size: 1 |
Rico Wind | 5ef313b | 2020-06-24 14:26:39 +0200 | [diff] [blame] | 458 | max_concurrent_invocations: 3 |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 459 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 460 | buildbucket { |
| 461 | server: "cr-buildbucket.appspot.com" |
| 462 | bucket: "luci.r8.ci" |
| 463 | builder: "linux_release" |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | job { |
| 468 | id: "r8cf-linux-jctf" |
| 469 | acl_sets: "default" |
| 470 | buildbucket { |
| 471 | server: "cr-buildbucket.appspot.com" |
| 472 | bucket: "luci.r8.ci" |
| 473 | builder: "r8cf-linux-jctf" |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | job { |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 478 | id: "r8cf-linux-jctf_release" |
| 479 | acl_sets: "default" |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 480 | triggering_policy: { |
| 481 | max_batch_size: 1 |
| 482 | } |
Rico Wind | c922c66 | 2019-05-07 09:46:06 +0200 | [diff] [blame] | 483 | buildbucket { |
| 484 | server: "cr-buildbucket.appspot.com" |
| 485 | bucket: "luci.r8.ci" |
| 486 | builder: "r8cf-linux-jctf_release" |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | job { |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 491 | id: "windows" |
Rico Wind | 27906cf | 2019-03-06 14:53:36 +0100 | [diff] [blame] | 492 | triggering_policy: { |
| 493 | max_concurrent_invocations: 3 |
| 494 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 495 | acl_sets: "default" |
| 496 | buildbucket { |
| 497 | server: "cr-buildbucket.appspot.com" |
| 498 | bucket: "luci.r8.ci" |
| 499 | builder: "windows" |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | job { |
| 504 | id: "windows_release" |
| 505 | acl_sets: "default" |
Rico Wind | 27906cf | 2019-03-06 14:53:36 +0100 | [diff] [blame] | 506 | triggering_policy: { |
Rico Wind | 26d0018 | 2020-06-11 09:04:53 +0200 | [diff] [blame] | 507 | max_batch_size: 1 |
Rico Wind | 27906cf | 2019-03-06 14:53:36 +0100 | [diff] [blame] | 508 | } |
Rico Wind | a1dea21 | 2019-02-18 12:21:33 +0100 | [diff] [blame] | 509 | buildbucket { |
| 510 | server: "cr-buildbucket.appspot.com" |
| 511 | bucket: "luci.r8.ci" |
| 512 | builder: "windows_release" |
| 513 | } |
| 514 | } |
| 515 | |