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

Unified Diff: infra/bots/tasks.json

Issue 2301313002: [task scheduler] Add extra_args in tasks.json (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add variables for TASK_NAME, REVISION Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/tasks.json
diff --git a/infra/bots/tasks.json b/infra/bots/tasks.json
index bfd32995923bbca8ac59a692f7fe9a5903468e87..709af0398fb92ce0be882b212a18a8c3c41de59a 100644
--- a/infra/bots/tasks.json
+++ b/infra/bots/tasks.json
@@ -4,6 +4,15 @@
"cipd_packages": [],
"dependencies": [],
"dimensions": ["pool:Skia", "os:Ubuntu", "gpu:none"],
+ "extra_args": [
+ "--workdir", "../../..", "swarm_compile",
+ "buildername=<(TASK_NAME)",
+ "mastername=fake-master",
+ "buildnumber=2",
+ "slavename=fake-buildslave",
+ "swarm_out_dir=${ISOLATED_OUTDIR}",
+ "revision=<(REVISION)"
+ ],
"isolate": "compile_skia.isolate",
"priority": 0.8
},
@@ -25,6 +34,15 @@
}],
"dependencies": ["Build-Ubuntu-GCC-x86_64-Release-GN"],
"dimensions": ["pool:Skia", "os:Ubuntu", "cpu:x86-64-avx2", "gpu:none"],
+ "extra_args": [
+ "--workdir", "../../..", "swarm_test",
+ "buildername=<(TASK_NAME)",
+ "mastername=fake-master",
+ "buildnumber=2",
+ "slavename=fake-buildslave",
+ "swarm_out_dir=${ISOLATED_OUTDIR}",
+ "revision=<(REVISION)"
+ ],
"isolate": "test_skia.isolate",
"priority": 0.8
},
@@ -46,6 +64,15 @@
}],
"dependencies": ["Build-Ubuntu-GCC-x86_64-Release-GN"],
"dimensions": ["pool:Skia", "os:Ubuntu", "cpu:x86-64-avx2", "gpu:none"],
+ "extra_args": [
+ "--workdir", "../../..", "swarm_perf",
+ "buildername=<(TASK_NAME)",
+ "mastername=fake-master",
+ "buildnumber=2",
+ "slavename=fake-buildslave",
+ "swarm_out_dir=${ISOLATED_OUTDIR}",
+ "revision=<(REVISION)"
+ ],
"isolate": "perf_skia.isolate",
"priority": 0.8
}
« 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