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

Side by Side Diff: recipe_modules/tryserver/example.expected/with_svn_patch.json

Issue 1915833003: tryserver recipe_module: Add get_tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 8 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 "svn", 4 "svn",
5 "export", 5 "export",
6 "--force", 6 "--force",
7 "svn://checkout.url", 7 "svn://checkout.url",
8 "/path/to/tmp/diff" 8 "/path/to/tmp/diff"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]", 10 "cwd": "[SLAVE_BUILD]",
(...skipping 14 matching lines...) Expand all
25 "--forward", 25 "--forward",
26 "--remove-empty-files", 26 "--remove-empty-files",
27 "--strip", 27 "--strip",
28 "0" 28 "0"
29 ], 29 ],
30 "cwd": "[SLAVE_BUILD]", 30 "cwd": "[SLAVE_BUILD]",
31 "name": "apply patch", 31 "name": "apply patch",
32 "stdin": "fake patch.diff content (line 1)\nfake patch.diff content (line 2) \n" 32 "stdin": "fake patch.diff content (line 1)\nfake patch.diff content (line 2) \n"
33 }, 33 },
34 { 34 {
35 "cmd": [
36 "git",
37 "diff",
38 "--cached",
39 "--name-only"
40 ],
41 "cwd": "[SLAVE_BUILD]",
42 "name": "git diff to analyze patch",
43 "stdout": "/path/to/tmp/",
44 "~followup_annotations": [
45 "@@@STEP_LOG_LINE@files@foo.cc@@@",
46 "@@@STEP_LOG_END@files@@@",
47 "@@@SET_BUILD_PROPERTY@failure_type@\"INVALID_TEST_RESULTS\"@@@",
48 "@@@SET_BUILD_PROPERTY@subproject_tag@\"v8\"@@@"
49 ]
50 },
51 {
52 "cmd": [
53 "python",
54 "-u",
55 "import sys; sys.exit(1)"
56 ],
57 "cwd": "[SLAVE_BUILD]",
58 "name": "fail",
59 "~followup_annotations": [
60 "step returned non-zero exit code: 1",
61 "@@@STEP_TEXT@foo@@@",
62 "@@@STEP_FAILURE@@@",
63 "@@@SET_BUILD_PROPERTY@failure_hash@\"c2311ad770732eade3d2f48247abd147e40a 70e7\"@@@"
64 ]
65 },
66 {
67 "name": "$result", 35 "name": "$result",
68 "reason": "Step('fail') failed with return_code 1", 36 "reason": "Cannot get tags from gerrit yet.",
69 "status_code": 1 37 "status_code": 1
70 } 38 }
71 ] 39 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698