-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtargets.xml
276 lines (215 loc) · 9.51 KB
/
targets.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<?xml version="1.0" encoding="UTF-8" ?>
<project name="targets" phingVersion="2.14.0">
<!-- ============================================ -->
<!-- Import hidden targets. -->
<!-- A stub that imports everything else. -->
<!-- ============================================ -->
<import file="${phing.dir.targets}/imports.xml" />
<!-- ============================================ -->
<!-- Default build target. -->
<!-- For all project contributors. -->
<!-- Run with `$ phing` or `$ phing build`. -->
<!-- ============================================ -->
<target name="build">
<echo msg="Running target: build" />
<property name="_primary_target" override="false" value="build" />
<phingCall target="-builds-in-base-dir-composer" />
<phingCall target="-builds-in-base-dir-dotbuilds" />
<phingCall target="-builds-in-base-dir-i18n-text-domains" />
<phingCall target="-builds-in-base-dir-after-create-build-dir" />
<phingCall target="-builds-in-build-dir-version-tokens" />
<phingCall target="-builds-in-build-dir-composer" />
<phingCall target="-builds-in-build-dir-dotbuilds" />
<phingCall target="-builds-in-build-dir-js-css-cleanup" />
<phingCall target="-linters-phpcs" />
<phingCall target="-distros-packages" />
<phingCall target="-properties-save-project-version" />
<phingCall target="-notifications-complete">
<property name="_target" value="build" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Lite build target. -->
<!-- For all project contributors. -->
<!-- Run with `$ phing build-lite`. -->
<!-- ============================================ -->
<target name="build-lite">
<echo msg="Running target: build-lite" />
<property name="_primary_target" override="false" value="build-lite" />
<phingCall target="-variations-lite-build" />
<phingCall target="-notifications-complete">
<property name="_target" value="build-lite" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Full build target. -->
<!-- For project leads & CI servers. -->
<!-- Run with `$ phing full-build`. -->
<!-- ============================================ -->
<target name="full-build">
<echo msg="Running target: full-build" />
<property name="_primary_target" override="false" value="full-build" />
<phingCall target="-builds-in-base-dir-version-tokens" />
<phingCall target="-builds-in-base-dir-composer" />
<phingCall target="-builds-in-base-dir-dotbuilds" />
<phingCall target="-builds-in-base-dir-i18n-text-domains" />
<phingCall target="-builds-in-base-dir-i18n-pots" />
<phingCall target="-builds-in-base-dir-after-create-build-dir" />
<phingCall target="-builds-in-build-dir-composer" />
<phingCall target="-builds-in-build-dir-dotbuilds" />
<phingCall target="-builds-in-build-dir-js-css-cleanup" />
<phingCall target="-linters-phpcs" />
<phingCall target="-distros-packages" />
<phingCall target="-properties-save-project-version" />
<phingCall target="-notifications-complete">
<property name="_target" value="full-build" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Full lite build target. -->
<!-- For project leads & CI servers. -->
<!-- Run with `$ phing full-build-lite`. -->
<!-- ============================================ -->
<target name="full-build-lite">
<echo msg="Running target: full-build-lite" />
<property name="_primary_target" override="false" value="full-build-lite" />
<phingCall target="-variations-lite-full-build" />
<phingCall target="-notifications-complete">
<property name="_target" value="full-build-lite" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Build (all) target. -->
<!-- For all project contributors. -->
<!-- Run with `$ phing build-all`. -->
<!-- ============================================ -->
<target name="build-all">
<echo msg="Running target: build-all" />
<property name="_primary_target" override="false" value="build-all" />
<phingCall target="build" />
<phingCall target="build-lite" />
<phingCall target="-notifications-complete">
<property name="_target" value="build-all" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Full build (all) target. -->
<!-- For project leads & CI servers. -->
<!-- Run with `$ phing full-build-all`. -->
<!-- ============================================ -->
<target name="full-build-all">
<echo msg="Running target: full-build-all" />
<property name="_primary_target" override="false" value="full-build-all" />
<phingCall target="full-build" />
<phingCall target="full-build-lite" />
<phingCall target="-notifications-complete">
<property name="_target" value="full-build-all" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Post-receive build target. -->
<!-- For remote deployments to use. -->
<!-- Run with `$ phing post-receive-build`. -->
<!-- ============================================ -->
<target name="post-receive-build">
<echo msg="Running target: post-receive-build" />
<property name="_primary_target" override="false" value="post-receive-build" />
<phingCall target="-builds-in-base-dir-composer" />
<phingCall target="-notifications-complete">
<property name="_target" value="post-receive-build" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Test running target. -->
<!-- For remote CI servers to use. -->
<!-- Run with `$ phing test`. -->
<!-- ============================================ -->
<target name="test">
<echo msg="Running target: test" />
<property name="_primary_target" override="false" value="test" />
<phingCall target="-tests-phpunit" />
<phingCall target="-tests-casperjs" />
<phingCall target="-notifications-complete">
<property name="_target" value="test" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Codex generation target. -->
<!-- For project leads or codex maintainers. -->
<!-- Run with `$ phing codex`. -->
<!-- ============================================ -->
<target name="codex">
<echo msg="Running target: codex" />
<property name="_primary_target" override="false" value="codex" />
<phingCall target="-codex-apigen" />
<phingCall target="-notifications-complete">
<property name="_target" value="codex" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Feature branch targets. -->
<!-- For all project contributors. -->
<!-- Run with `$ phing feature`. -->
<!-- ============================================ -->
<target name="feature">
<echo msg="Running target: feature" />
<property name="_primary_target" override="false" value="feature" />
<phingCall target="-features-feature" />
<!-- <phingCall target="-notifications-complete">
<property name="_target" value="feature" />
</phingCall> -->
</target>
<target name="feature-start">
<echo msg="Running target: feature-start" />
<property name="_primary_target" override="false" value="feature-start" />
<property name="action" value="start" override="true" />
<phingCall target="-features-feature" />
<!-- <phingCall target="-notifications-complete">
<property name="_target" value="feature-start" />
</phingCall> -->
</target>
<target name="feature-finish">
<echo msg="Running target: feature-finish" />
<property name="_primary_target" override="false" value="feature-finish" />
<property name="action" value="finish" override="true" />
<phingCall target="-features-feature" />
<phingCall target="-notifications-complete">
<property name="_target" value="feature-finish" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Release procedure targets. -->
<!-- For project leads doing a release. -->
<!-- Run with `$ phing release[-rc]`. -->
<!-- ============================================ -->
<target name="release">
<echo msg="Running target: release" />
<property name="_primary_target" override="false" value="release" />
<phingCall target="-releases-release" />
<phingCall target="-notifications-complete">
<property name="_target" value="release" />
</phingCall>
</target>
<target name="release-rc">
<echo msg="Running target: release-rc" />
<property name="_primary_target" override="false" value="release-rc" />
<property name="type" value="rc" override="true" />
<phingCall target="release" />
<phingCall target="-notifications-complete">
<property name="_target" value="release-rc" />
</phingCall>
</target>
<!-- ============================================ -->
<!-- Upload procedure targets. -->
<!-- For project leads updating bleeding edge. -->
<!-- Run with `$ phing update-bleeding-edge`. -->
<!-- ============================================ -->
<target name="update-bleeding-edge">
<echo msg="Running target: update-bleeding-edge" />
<property name="_primary_target" override="false" value="update-bleeding-edge" />
<phingCall target="-uploads-bleeding-edge" />
<phingCall target="-notifications-complete">
<property name="_target" value="update-bleeding-edge" />
</phingCall>
</target>
</project>