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