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

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

Issue 1115453002: Recipes: make cwd default to slave_build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 5 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD]/scripts/slave/git_setup.py", 6 "[BUILD]/scripts/slave/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]",
12 "name": "git setup (swarming_client)" 13 "name": "git setup (swarming_client)"
13 }, 14 },
14 { 15 {
15 "cmd": [ 16 "cmd": [
16 "git", 17 "git",
17 "retry", 18 "retry",
18 "fetch", 19 "fetch",
19 "origin", 20 "origin",
20 "master" 21 "master"
21 ], 22 ],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "cwd": "[SLAVE_BUILD]/swarming.client", 64 "cwd": "[SLAVE_BUILD]/swarming.client",
64 "name": "submodule update (swarming_client)" 65 "name": "submodule update (swarming_client)"
65 }, 66 },
66 { 67 {
67 "cmd": [ 68 "cmd": [
68 "python", 69 "python",
69 "-u", 70 "-u",
70 "[SLAVE_BUILD]/swarming.client/swarming.py", 71 "[SLAVE_BUILD]/swarming.client/swarming.py",
71 "--version" 72 "--version"
72 ], 73 ],
74 "cwd": "[SLAVE_BUILD]",
73 "name": "swarming.py --version", 75 "name": "swarming.py --version",
74 "stdout": "/path/to/tmp/", 76 "stdout": "/path/to/tmp/",
75 "~followup_annotations": [ 77 "~followup_annotations": [
76 "@@@STEP_TEXT@0.4.4@@@" 78 "@@@STEP_TEXT@0.4.4@@@"
77 ] 79 ]
78 }, 80 },
79 { 81 {
80 "cmd": [ 82 "cmd": [
81 "python", 83 "python",
82 "-u", 84 "-u",
83 "[SLAVE_BUILD]/swarming.client/isolate.py", 85 "[SLAVE_BUILD]/swarming.client/isolate.py",
84 "--version" 86 "--version"
85 ], 87 ],
88 "cwd": "[SLAVE_BUILD]",
86 "name": "isolate.py --version", 89 "name": "isolate.py --version",
87 "stdout": "/path/to/tmp/", 90 "stdout": "/path/to/tmp/",
88 "~followup_annotations": [ 91 "~followup_annotations": [
89 "@@@STEP_TEXT@0.3.1@@@" 92 "@@@STEP_TEXT@0.3.1@@@"
90 ] 93 ]
91 }, 94 },
92 { 95 {
93 "cmd": [ 96 "cmd": [
94 "python", 97 "python",
95 "-u", 98 "-u",
96 "import sys; sys.exit(1)" 99 "import sys; sys.exit(1)"
97 ], 100 ],
101 "cwd": "[SLAVE_BUILD]",
98 "name": "swarming.py is too old", 102 "name": "swarming.py is too old",
99 "~followup_annotations": [ 103 "~followup_annotations": [
100 "@@@STEP_TEXT@Expecting at least v20.0.0, got v0.4.4@@@", 104 "@@@STEP_TEXT@Expecting at least v20.0.0, got v0.4.4@@@",
101 "@@@STEP_FAILURE@@@" 105 "@@@STEP_FAILURE@@@"
102 ] 106 ]
103 }, 107 },
104 { 108 {
105 "name": "$final_result", 109 "name": "$final_result",
106 "reason": "Expecting at least v20.0.0, got v0.4.4", 110 "reason": "Expecting at least v20.0.0, got v0.4.4",
107 "status_code": 1 111 "status_code": 1
108 } 112 }
109 ] 113 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698