diff options
author | borenet <borenet@chromium.org> | 2016-09-01 12:32:23 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-01 12:32:23 -0700 |
commit | de3184fd846925d716e8dc530316c1b606e52511 (patch) | |
tree | ac56a23557e688bf7e9b0117d930531853462066 | |
parent | e01295c22a9a929d74347d466310b962712f1ef6 (diff) |
Add infra/bots/tasks.json
This is an initial version which adds a trio of buildbot-less bots. I
expect these to be totally broken while I work out the issues.
In the future, we'll have a script to generate tasks.json.
BUG=skia:5626
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2302983002
Review-Url: https://codereview.chromium.org/2302983002
-rw-r--r-- | infra/bots/tasks.json | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json new file mode 100644 index 0000000000..bfd3299592 --- /dev/null +++ b/infra/bots/tasks.json @@ -0,0 +1,53 @@ +{ + "tasks": { + "Build-Ubuntu-GCC-x86_64-Release-GN": { + "cipd_packages": [], + "dependencies": [], + "dimensions": ["pool:Skia", "os:Ubuntu", "gpu:none"], + "isolate": "compile_skia.isolate", + "priority": 0.8 + }, + "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-GN": { + "cipd_packages": [{ + "name": "skia/bots/skimage", + "path": "skimage", + "version": 4 + }, + { + "name": "skia/bots/skp", + "path": "skp", + "version": 6 + }, + { + "name": "skia/bots/svg", + "path": "svg", + "version": 1 + }], + "dependencies": ["Build-Ubuntu-GCC-x86_64-Release-GN"], + "dimensions": ["pool:Skia", "os:Ubuntu", "cpu:x86-64-avx2", "gpu:none"], + "isolate": "test_skia.isolate", + "priority": 0.8 + }, + "Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-GN": { + "cipd_packages": [{ + "name": "skia/bots/skimage", + "path": "skimage", + "version": 4 + }, + { + "name": "skia/bots/skp", + "path": "skp", + "version": 6 + }, + { + "name": "skia/bots/svg", + "path": "svg", + "version": 1 + }], + "dependencies": ["Build-Ubuntu-GCC-x86_64-Release-GN"], + "dimensions": ["pool:Skia", "os:Ubuntu", "cpu:x86-64-avx2", "gpu:none"], + "isolate": "perf_skia.isolate", + "priority": 0.8 + } + } +} |