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

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

Issue 1917243002: Revert "build: roll infra_paths changes" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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 "/bin/echo", 4 "/bin/echo",
5 "foo/bar/baz" 5 "foo/bar/baz"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]",
7 "name": "step1" 8 "name": "step1"
8 }, 9 },
9 { 10 {
10 "cmd": [ 11 "cmd": [
11 "/bin/echo", 12 "/bin/echo",
12 "foo/bar/baz" 13 "foo/bar/baz"
13 ], 14 ],
15 "cwd": "[SLAVE_BUILD]",
14 "name": "step2" 16 "name": "step2"
15 }, 17 },
16 { 18 {
17 "cmd": [ 19 "cmd": [
18 "/bin/echo", 20 "/bin/echo",
19 "foo/bar/baz" 21 "foo/bar/baz"
20 ], 22 ],
23 "cwd": "[SLAVE_BUILD]",
21 "name": "step3" 24 "name": "step3"
22 }, 25 },
23 { 26 {
24 "cmd": [ 27 "cmd": [
25 "/bin/echo", 28 "/bin/echo",
26 "foo/bar/baz" 29 "foo/bar/baz"
27 ], 30 ],
31 "cwd": "[SLAVE_BUILD]",
28 "name": "step4" 32 "name": "step4"
29 }, 33 },
30 { 34 {
31 "cmd": [ 35 "cmd": [
32 "python", 36 "python",
33 "-u", 37 "-u",
34 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", 38 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py",
35 "fake://foo/bar", 39 "fake://foo/bar",
36 "--outfile", 40 "--outfile",
37 "/path/to/tmp/", 41 "/path/to/tmp/",
38 "--attempts", 42 "--attempts",
39 "5" 43 "5"
40 ], 44 ],
45 "cwd": "[SLAVE_BUILD]",
41 "name": "fetch fake://foo/bar" 46 "name": "fetch fake://foo/bar"
42 }, 47 },
43 { 48 {
44 "cmd": [ 49 "cmd": [
45 "python", 50 "python",
46 "-u", 51 "-u",
47 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py", 52 "RECIPE_PACKAGE_REPO[build]/scripts/tools/pycurl.py",
48 "fake://foo/bar (w/ auth)", 53 "fake://foo/bar (w/ auth)",
49 "--outfile", 54 "--outfile",
50 "/path/to/tmp/", 55 "/path/to/tmp/",
51 "--headers-json", 56 "--headers-json",
52 "{\"Authorization\": \"thing\"}" 57 "{\"Authorization\": \"thing\"}"
53 ], 58 ],
59 "cwd": "[SLAVE_BUILD]",
54 "name": "fetch fake://foo/bar (w/ auth)" 60 "name": "fetch fake://foo/bar (w/ auth)"
55 }, 61 },
56 { 62 {
57 "name": "$result", 63 "name": "$result",
58 "recipe_result": null, 64 "recipe_result": null,
59 "status_code": 0 65 "status_code": 0
60 } 66 }
61 ] 67 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698