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

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

Issue 1642023002: 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: presubmit 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 "~followup_annotations": [
140 "step returned non-zero exit code: 1",
141 "@@@STEP_EXCEPTION@@@"
142 ]
143 },
144 {
145 "cmd": [
146 "git",
147 "rebase",
148 "origin/master"
149 ],
150 "cwd": "[SLAVE_BUILD]/src",
151 "name": "my repo rebase"
152 },
153 {
154 "cmd": [
155 "git",
156 "bundle",
157 "create",
158 "[SLAVE_BUILD]/all.bundle",
159 "--all"
160 ],
161 "cwd": "[SLAVE_BUILD]/src",
162 "name": "git bundle"
163 },
164 {
165 "name": "$result",
166 "recipe_result": null,
167 "status_code": 0
168 }
169 ]
OLDNEW
« no previous file with comments | « recipe_modules/git/example.expected/can_fail_build.json ('k') | recipe_modules/git/example.expected/cat-file_test.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698