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

Side by Side Diff: recipe_modules/tryserver/example.expected/with_git_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 "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 "[TMP_BASE]/patch_tmp_1", 8 "[TMP_BASE]/patch_tmp_1",
9 "--url", 9 "--url",
10 "http://patch.url/" 10 "http://patch.url/"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 { 62 {
63 "cmd": [ 63 "cmd": [
64 "rm", 64 "rm",
65 "-rf", 65 "-rf",
66 "[TMP_BASE]/patch_tmp_1" 66 "[TMP_BASE]/patch_tmp_1"
67 ], 67 ],
68 "cwd": "[SLAVE_BUILD]", 68 "cwd": "[SLAVE_BUILD]",
69 "name": "remove patch" 69 "name": "remove patch"
70 }, 70 },
71 { 71 {
72 "cmd": [
tandrii(chromium) 2016/04/26 10:29:58 where did this go?
73 "git",
74 "diff",
75 "--cached",
76 "--name-only"
77 ],
78 "cwd": "[SLAVE_BUILD]/v8",
79 "name": "git diff to analyze patch",
80 "stdout": "/path/to/tmp/",
81 "~followup_annotations": [
82 "@@@STEP_LOG_LINE@files@v8/foo.cc@@@",
83 "@@@STEP_LOG_END@files@@@",
84 "@@@SET_BUILD_PROPERTY@failure_type@\"INVALID_TEST_RESULTS\"@@@",
85 "@@@SET_BUILD_PROPERTY@subproject_tag@\"v8\"@@@"
86 ]
87 },
88 {
89 "cmd": [
90 "python",
91 "-u",
92 "import sys; sys.exit(1)"
93 ],
94 "cwd": "[SLAVE_BUILD]",
95 "name": "fail",
96 "~followup_annotations": [
97 "step returned non-zero exit code: 1",
98 "@@@STEP_TEXT@foo@@@",
99 "@@@STEP_FAILURE@@@",
100 "@@@SET_BUILD_PROPERTY@failure_hash@\"c2311ad770732eade3d2f48247abd147e40a 70e7\"@@@"
101 ]
102 },
103 {
104 "name": "$result", 72 "name": "$result",
105 "reason": "Step('fail') failed with return_code 1", 73 "reason": "Cannot get tags from gerrit yet.",
106 "status_code": 1 74 "status_code": 1
107 } 75 }
108 ] 76 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698