aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2016-11-09 17:25:02 -0500
committerGravatar Mike Klein <mtklein@chromium.org>2016-11-09 22:35:50 +0000
commitcb36f3cacf1d044b9cb28639f0e0fca2b86d157f (patch)
tree3b8de577ae1854bd43f91815c8a07fbbe2e93a68 /infra/bots
parenta115129a467af073608263412ed8ac2561789818 (diff)
auto-add Build jobs
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4639 Change-Id: I61acce39abf08c4307e5a7ec990ec8857539f943 Reviewed-on: https://skia-review.googlesource.com/4639 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'infra/bots')
-rw-r--r--infra/bots/gen_tasks.go7
-rw-r--r--infra/bots/tasks.json24
2 files changed, 30 insertions, 1 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go
index e0d01dd964..5796e0483e 100644
--- a/infra/bots/gen_tasks.go
+++ b/infra/bots/gen_tasks.go
@@ -242,6 +242,11 @@ func compile(b *specs.TasksCfgBuilder, name string, parts map[string]string) str
Isolate: "compile_skia.isolate",
Priority: 0.8,
})
+ // All compile tasks are runnable as their own Job.
+ b.AddJob(name, &specs.JobSpec{
+ Priority: 0.8,
+ TaskSpecs: []string{name},
+ })
return name
}
@@ -559,7 +564,7 @@ func process(b *specs.TasksCfgBuilder, name string) {
}
// Add the Job spec.
- b.MustAddJob(name, &specs.JobSpec{
+ b.AddJob(name, &specs.JobSpec{
Priority: 0.8,
TaskSpecs: deps,
})
diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json
index 848c264746..f0140cb1d2 100644
--- a/infra/bots/tasks.json
+++ b/infra/bots/tasks.json
@@ -1,11 +1,35 @@
{
"jobs": {
+ "Build-Mac-Clang-Arm7-Debug-iOS": {
+ "priority": 0.8,
+ "tasks": [
+ "Build-Mac-Clang-Arm7-Debug-iOS"
+ ]
+ },
+ "Build-Mac-Clang-Arm7-Release-iOS": {
+ "priority": 0.8,
+ "tasks": [
+ "Build-Mac-Clang-Arm7-Release-iOS"
+ ]
+ },
"Build-Mac-Clang-arm64-Debug-GN_iOS": {
"priority": 0.8,
"tasks": [
"Build-Mac-Clang-arm64-Debug-GN_iOS"
]
},
+ "Build-Ubuntu-Clang-arm-Debug-GN_Android": {
+ "priority": 0.8,
+ "tasks": [
+ "Build-Ubuntu-Clang-arm-Debug-GN_Android"
+ ]
+ },
+ "Build-Ubuntu-Clang-arm-Release-GN_Android": {
+ "priority": 0.8,
+ "tasks": [
+ "Build-Ubuntu-Clang-arm-Release-GN_Android"
+ ]
+ },
"Build-Ubuntu-GCC-x86_64-Release-GN": {
"priority": 0.8,
"tasks": [