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

Side by Side Diff: scripts/slave/recipe_modules/swarming_client/example.expected/basic.json

Issue 1930433002: Roll recipe dependencies (nontrivial). (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Rebase Created 4 years, 7 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 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
7 "--path", 7 "--path",
8 "[SLAVE_BUILD]/swarming.client", 8 "[SLAVE_BUILD]/swarming.client",
9 "--url", 9 "--url",
10 "https://chromium.googlesource.com/external/swarming.client.git" 10 "https://chromium.googlesource.com/external/swarming.client.git"
11 ], 11 ],
12 "cwd": "[SLAVE_BUILD]",
13 "name": "git setup (swarming_client)" 12 "name": "git setup (swarming_client)"
14 }, 13 },
15 { 14 {
16 "cmd": [ 15 "cmd": [
17 "git", 16 "git",
18 "retry", 17 "retry",
19 "fetch", 18 "fetch",
20 "origin", 19 "origin",
21 "master" 20 "master"
22 ], 21 ],
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "cwd": "[SLAVE_BUILD]/swarming.client", 76 "cwd": "[SLAVE_BUILD]/swarming.client",
78 "name": "submodule update (swarming_client)" 77 "name": "submodule update (swarming_client)"
79 }, 78 },
80 { 79 {
81 "cmd": [ 80 "cmd": [
82 "python", 81 "python",
83 "-u", 82 "-u",
84 "[SLAVE_BUILD]/swarming.client/swarming.py", 83 "[SLAVE_BUILD]/swarming.client/swarming.py",
85 "--version" 84 "--version"
86 ], 85 ],
87 "cwd": "[SLAVE_BUILD]",
88 "name": "swarming.py --version", 86 "name": "swarming.py --version",
89 "stdout": "/path/to/tmp/", 87 "stdout": "/path/to/tmp/",
90 "~followup_annotations": [ 88 "~followup_annotations": [
91 "@@@STEP_TEXT@0.4.4@@@" 89 "@@@STEP_TEXT@0.4.4@@@"
92 ] 90 ]
93 }, 91 },
94 { 92 {
95 "cmd": [ 93 "cmd": [
96 "python", 94 "python",
97 "-u", 95 "-u",
98 "[SLAVE_BUILD]/swarming.client/isolate.py", 96 "[SLAVE_BUILD]/swarming.client/isolate.py",
99 "--version" 97 "--version"
100 ], 98 ],
101 "cwd": "[SLAVE_BUILD]",
102 "name": "isolate.py --version", 99 "name": "isolate.py --version",
103 "stdout": "/path/to/tmp/", 100 "stdout": "/path/to/tmp/",
104 "~followup_annotations": [ 101 "~followup_annotations": [
105 "@@@STEP_TEXT@0.3.1@@@" 102 "@@@STEP_TEXT@0.3.1@@@"
106 ] 103 ]
107 }, 104 },
108 { 105 {
109 "cmd": [ 106 "cmd": [
110 "python", 107 "python",
111 "-u", 108 "-u",
112 "import sys; sys.exit(1)" 109 "import sys; sys.exit(1)"
113 ], 110 ],
114 "cwd": "[SLAVE_BUILD]",
115 "name": "swarming.py is too old", 111 "name": "swarming.py is too old",
116 "~followup_annotations": [ 112 "~followup_annotations": [
117 "@@@STEP_TEXT@Expecting at least v20.0.0, got v0.4.4@@@", 113 "@@@STEP_TEXT@Expecting at least v20.0.0, got v0.4.4@@@",
118 "@@@STEP_FAILURE@@@" 114 "@@@STEP_FAILURE@@@"
119 ] 115 ]
120 }, 116 },
121 { 117 {
122 "name": "$result", 118 "name": "$result",
123 "reason": "Expecting at least v20.0.0, got v0.4.4", 119 "reason": "Expecting at least v20.0.0, got v0.4.4",
124 "status_code": 1 120 "status_code": 1
125 } 121 }
126 ] 122 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698