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

Side by Side Diff: infra/bots/recipes/swarm_housekeeper.expected/Housekeeper-PerCommit.json

Issue 2237033002: Add extracting GM comments to the housekeeper bot. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: unused import Created 4 years, 4 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
7 "[SLAVE_BUILD]/tmp", 7 "[SLAVE_BUILD]/tmp",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs tmp_dir", 10 "name": "makedirs tmp_dir",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ], 61 ],
62 "cwd": "[SLAVE_BUILD]/skia", 62 "cwd": "[SLAVE_BUILD]/skia",
63 "env": { 63 "env": {
64 "BUILDTYPE": "Release", 64 "BUILDTYPE": "Release",
65 "CHROME_HEADLESS": "1", 65 "CHROME_HEADLESS": "1",
66 "SKIA_OUT": "[SLAVE_BUILD]/out" 66 "SKIA_OUT": "[SLAVE_BUILD]/out"
67 }, 67 },
68 "name": "generate and upload binary size data" 68 "name": "generate and upload binary size data"
69 }, 69 },
70 { 70 {
71 "cmd": [
72 "[SLAVE_BUILD]/go/go/bin/go",
73 "get",
74 "go.skia.org/infra/comments/go/extract_comments"
75 ],
76 "cwd": "[SLAVE_BUILD]/skia",
77 "env": {
78 "BUILDTYPE": "Release",
79 "CHROME_HEADLESS": "1",
80 "GOPATH": "[SLAVE_BUILD]/tmp/golib",
81 "SKIA_OUT": "[SLAVE_BUILD]/out"
82 },
83 "name": "compile extract_comments"
84 },
85 {
86 "cmd": [
87 "[SLAVE_BUILD]/tmp/golib/bin/extract_comments",
88 "--dir",
89 "gm",
90 "--dest",
91 "gs://skia-doc/gm/comments.json"
92 ],
93 "cwd": "[SLAVE_BUILD]/skia",
94 "env": {
95 "BUILDTYPE": "Release",
96 "CHROME_HEADLESS": "1",
97 "GOPATH": "[SLAVE_BUILD]/tmp/golib",
98 "SKIA_OUT": "[SLAVE_BUILD]/out"
99 },
100 "name": "run extract_comments"
101 },
102 {
71 "name": "$result", 103 "name": "$result",
72 "recipe_result": null, 104 "recipe_result": null,
73 "status_code": 0 105 "status_code": 0
74 } 106 }
75 ] 107 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698