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

Side by Side Diff: recipe_modules/git/example.expected/rebase_failed.json

Issue 1644173002: Revert of depot_tools: import bot_update gclient git rietveld tryserver recipe modules (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 10 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
(Empty)
1 [
2 {
3 "cmd": [
4 "python",
5 "-u",
6 "RECIPE_MODULE[git]/resources/git_setup.py",
7 "--path",
8 "[SLAVE_BUILD]/src",
9 "--url",
10 "https://chromium.googlesource.com/chromium/src.git"
11 ],
12 "cwd": "[SLAVE_BUILD]",
13 "name": "git setup"
14 },
15 {
16 "cmd": [
17 "git",
18 "retry",
19 "fetch",
20 "origin",
21 "master",
22 "--recurse-submodules"
23 ],
24 "cwd": "[SLAVE_BUILD]/src",
25 "name": "git fetch"
26 },
27 {
28 "cmd": [
29 "git",
30 "checkout",
31 "-f",
32 "FETCH_HEAD"
33 ],
34 "cwd": "[SLAVE_BUILD]/src",
35 "name": "git checkout"
36 },
37 {
38 "cmd": [
39 "git",
40 "clean",
41 "-f",
42 "-d",
43 "-x"
44 ],
45 "cwd": "[SLAVE_BUILD]/src",
46 "name": "git clean"
47 },
48 {
49 "cmd": [
50 "git",
51 "submodule",
52 "sync"
53 ],
54 "cwd": "[SLAVE_BUILD]/src",
55 "name": "submodule sync"
56 },
57 {
58 "cmd": [
59 "git",
60 "submodule",
61 "update",
62 "--init",
63 "--recursive"
64 ],
65 "cwd": "[SLAVE_BUILD]/src",
66 "name": "submodule update"
67 },
68 {
69 "cmd": [
70 "git",
71 "-c",
72 "foo=bar",
73 "count-objects",
74 "-v"
75 ],
76 "cwd": "[SLAVE_BUILD]/src",
77 "name": "count-objects",
78 "stdout": "/path/to/tmp/"
79 },
80 {
81 "cmd": [
82 "git",
83 "config",
84 "--get",
85 "remote.origin.url"
86 ],
87 "cwd": "[SLAVE_BUILD]/src",
88 "name": "git config remote.origin.url",
89 "stdout": "/path/to/tmp/",
90 "~followup_annotations": [
91 "@@@STEP_TEXT@foo@@@"
92 ]
93 },
94 {
95 "cmd": [
96 "git",
97 "show",
98 "HEAD",
99 "--format=%at",
100 "-s"
101 ],
102 "cwd": "[SLAVE_BUILD]/src",
103 "name": "git show",
104 "stdout": "/path/to/tmp/"
105 },
106 {
107 "cmd": [
108 "git",
109 "fetch",
110 "origin",
111 "--tags"
112 ],
113 "cwd": "[SLAVE_BUILD]/src",
114 "name": "git fetch tags"
115 },
116 {
117 "cmd": [
118 "git",
119 "status"
120 ],
121 "cwd": "[SLAVE_BUILD]/src",
122 "name": "git status"
123 },
124 {
125 "cmd": [
126 "git",
127 "status"
128 ],
129 "cwd": "[SLAVE_BUILD]/src",
130 "name": "git status can_fail_build"
131 },
132 {
133 "cmd": [
134 "git",
135 "status"
136 ],
137 "cwd": "[SLAVE_BUILD]/src",
138 "name": "git status cannot_fail_build"
139 },
140 {
141 "cmd": [
142 "git",
143 "rebase",
144 "origin/master"
145 ],
146 "cwd": "[SLAVE_BUILD]/src",
147 "name": "my repo rebase",
148 "~followup_annotations": [
149 "step returned non-zero exit code: 1",
150 "@@@STEP_EXCEPTION@@@"
151 ]
152 },
153 {
154 "cmd": [
155 "git",
156 "rebase",
157 "--abort"
158 ],
159 "cwd": "[SLAVE_BUILD]/src",
160 "name": "my repo rebase abort"
161 },
162 {
163 "name": "$result",
164 "reason": "Infra Failure: Step('my repo rebase') returned 1",
165 "status_code": 1
166 }
167 ]
OLDNEW
« no previous file with comments | « recipe_modules/git/example.expected/platform_win.json ('k') | recipe_modules/git/example.expected/remote_not_origin.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698