OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
7 "--master", | 7 "--master", |
8 "tryserver.infra", | 8 "tryserver.infra", |
9 "--builder", | 9 "--builder", |
10 "infra_tester", | 10 "infra_tester", |
11 "--slave", | 11 "--slave", |
12 "TestSlavename", | 12 "TestSlavename", |
13 "--spec", | 13 "--spec", |
14 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag
ed': True, 'name': 'infra', 'url': 'https://chromium.googlesource.com/infra/infr
a.git'}]", | 14 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file':
'.DEPS.git', 'managed': True, 'name': 'infra', 'url': 'https://chromium.googleso
urce.com/infra/infra.git'}]", |
15 "--root", | 15 "--root", |
16 "infra", | 16 "infra", |
17 "--revision_mapping_file", | 17 "--revision_mapping_file", |
18 "{\"infra\": \"got_revision\"}", | 18 "{\"infra\": \"got_revision\"}", |
19 "--git-cache-dir", | 19 "--git-cache-dir", |
20 "[GIT_CACHE]", | 20 "[ROOT]/b/build/slave/cache_dir", |
21 "--gerrit_repo", | 21 "--gerrit_repo", |
22 "https://chromium.googlesource.com/infra/infra", | 22 "https://chromium.googlesource.com/infra/infra", |
23 "--gerrit_ref", | 23 "--gerrit_ref", |
24 "refs/changes/11/338811/3", | 24 "refs/changes/11/338811/3", |
25 "--output_json", | 25 "--output_json", |
26 "/path/to/tmp/json", | 26 "/path/to/tmp/json", |
27 "--revision", | 27 "--revision", |
28 "infra@HEAD", | 28 "infra@HEAD", |
29 "--force", | 29 "--force", |
30 "--output_manifest" | 30 "--output_manifest" |
31 ], | 31 ], |
32 "cwd": "[SLAVE_BUILD]", | |
33 "env": { | 32 "env": { |
34 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 33 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
35 }, | 34 }, |
36 "name": "bot_update", | 35 "name": "bot_update", |
37 "~followup_annotations": [ | 36 "~followup_annotations": [ |
38 "@@@STEP_TEXT@Some step text@@@", | 37 "@@@STEP_TEXT@Some step text@@@", |
39 "@@@STEP_LOG_LINE@json.output@{@@@", | 38 "@@@STEP_LOG_LINE@json.output@{@@@", |
40 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 39 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
41 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 40 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
42 "@@@STEP_LOG_LINE@json.output@ \"infra\": \"HEAD\"@@@", | 41 "@@@STEP_LOG_LINE@json.output@ \"infra\": \"HEAD\"@@@", |
(...skipping 23 matching lines...) Expand all Loading... |
66 "git", | 65 "git", |
67 "-c", | 66 "-c", |
68 "user.email=commit-bot@chromium.org", | 67 "user.email=commit-bot@chromium.org", |
69 "-c", | 68 "-c", |
70 "user.name=The Commit Bot", | 69 "user.name=The Commit Bot", |
71 "commit", | 70 "commit", |
72 "-a", | 71 "-a", |
73 "-m", | 72 "-m", |
74 "Committed patch" | 73 "Committed patch" |
75 ], | 74 ], |
76 "cwd": "[SLAVE_BUILD]/infra", | 75 "cwd": "[CWD]/infra", |
77 "name": "commit git patch" | 76 "name": "commit git patch" |
78 }, | 77 }, |
79 { | 78 { |
80 "cmd": [ | 79 "cmd": [ |
81 "python", | 80 "python", |
82 "-u", | 81 "-u", |
83 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 82 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
84 "runhooks" | 83 "runhooks" |
85 ], | 84 ], |
86 "cwd": "[SLAVE_BUILD]", | |
87 "env": { | 85 "env": { |
88 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 86 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
89 }, | 87 }, |
90 "name": "gclient runhooks" | 88 "name": "gclient runhooks" |
91 }, | 89 }, |
92 { | 90 { |
93 "cmd": [ | 91 "cmd": [ |
94 "git", | 92 "git", |
95 "diff", | 93 "diff", |
96 "--name-only", | 94 "--name-only", |
97 "HEAD", | 95 "HEAD", |
98 "HEAD~" | 96 "HEAD~" |
99 ], | 97 ], |
100 "cwd": "[SLAVE_BUILD]/infra", | 98 "cwd": "[CWD]/infra", |
101 "name": "get change list", | 99 "name": "get change list", |
102 "stdout": "/path/to/tmp/", | 100 "stdout": "/path/to/tmp/", |
103 "~followup_annotations": [ | 101 "~followup_annotations": [ |
104 "@@@STEP_LOG_LINE@change list@infra/stuff.py@@@", | 102 "@@@STEP_LOG_LINE@change list@infra/stuff.py@@@", |
105 "@@@STEP_LOG_LINE@change list@go/src/infra/stuff.go@@@", | 103 "@@@STEP_LOG_LINE@change list@go/src/infra/stuff.go@@@", |
106 "@@@STEP_LOG_END@change list@@@" | 104 "@@@STEP_LOG_END@change list@@@" |
107 ] | 105 ] |
108 }, | 106 }, |
109 { | 107 { |
110 "cmd": [ | 108 "cmd": [ |
111 "python", | 109 "python", |
112 "-u", | 110 "-u", |
113 "test.py", | 111 "test.py", |
114 "test" | 112 "test" |
115 ], | 113 ], |
116 "cwd": "[SLAVE_BUILD]/infra", | 114 "cwd": "[CWD]/infra", |
117 "name": "python tests" | 115 "name": "python tests" |
118 }, | 116 }, |
119 { | 117 { |
120 "cmd": [ | 118 "cmd": [ |
121 "python", | 119 "python", |
122 "-u", | 120 "-u", |
123 "[SLAVE_BUILD]/infra/go/env.py" | 121 "[CWD]/infra/go/env.py" |
124 ], | 122 ], |
125 "cwd": "[SLAVE_BUILD]", | |
126 "name": "go bootstrap" | 123 "name": "go bootstrap" |
127 }, | 124 }, |
128 { | 125 { |
129 "cmd": [ | 126 "cmd": [ |
130 "python", | 127 "python", |
131 "-u", | 128 "-u", |
132 "[SLAVE_BUILD]/infra/go/env.py", | 129 "[CWD]/infra/go/env.py", |
133 "python", | 130 "python", |
134 "[SLAVE_BUILD]/infra/go/test.py" | 131 "[CWD]/infra/go/test.py" |
135 ], | 132 ], |
136 "cwd": "[SLAVE_BUILD]", | |
137 "name": "go tests" | 133 "name": "go tests" |
138 }, | 134 }, |
139 { | 135 { |
140 "name": "$result", | 136 "name": "$result", |
141 "recipe_result": null, | 137 "recipe_result": null, |
142 "status_code": 0 | 138 "status_code": 0 |
143 } | 139 } |
144 ] | 140 ] |
OLD | NEW |