|
1 | 1 | kind: pipeline
|
2 |
| -name: compatibility |
3 |
| - |
4 |
| -clone: |
5 |
| - depth: 1 |
6 |
| - |
7 |
| -steps: |
8 |
| - - name: app-code-check |
9 |
| - image: nextcloudci/php7.3:php7.3-5 |
10 |
| - environment: |
11 |
| - APP_NAME: user_saml |
12 |
| - CORE_BRANCH: master |
13 |
| - DB: sqlite |
14 |
| - commands: |
15 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
16 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
17 |
| - - cd ../server |
18 |
| - - ./occ app:check-code $APP_NAME -c strong-comparison -c deprecation |
19 |
| - - cd apps/$APP_NAME/ |
20 |
| - |
21 |
| -trigger: |
22 |
| - branch: |
23 |
| - - master |
24 |
| - - stable* |
25 |
| - event: |
26 |
| - - pull_request |
27 |
| - - push |
28 |
| - |
29 |
| -type: docker |
30 |
| - |
31 |
| ---- |
32 |
| -kind: pipeline |
33 |
| -name: compatibility-23 |
34 |
| - |
35 |
| -clone: |
36 |
| - depth: 1 |
37 |
| - |
38 |
| -steps: |
39 |
| - - name: app-code-check |
40 |
| - image: nextcloudci/php7.3:php7.3-5 |
41 |
| - environment: |
42 |
| - APP_NAME: user_saml |
43 |
| - CORE_BRANCH: stable23 |
44 |
| - DB: sqlite |
45 |
| - commands: |
46 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
47 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
48 |
| - - cd ../server |
49 |
| - - ./occ app:check-code $APP_NAME -c strong-comparison -c deprecation |
50 |
| - - cd apps/$APP_NAME/ |
51 |
| - |
52 |
| -trigger: |
53 |
| - branch: |
54 |
| - - master |
55 |
| - - stable* |
56 |
| - event: |
57 |
| - - pull_request |
58 |
| - - push |
59 |
| - |
60 |
| -type: docker |
61 |
| - |
62 |
| ---- |
63 |
| -kind: pipeline |
64 |
| -name: compatibility-22 |
65 |
| - |
66 |
| -clone: |
67 |
| - depth: 1 |
68 |
| - |
69 |
| -steps: |
70 |
| - - name: app-code-check |
71 |
| - image: nextcloudci/php7.3:php7.3-5 |
72 |
| - environment: |
73 |
| - APP_NAME: user_saml |
74 |
| - CORE_BRANCH: stable22 |
75 |
| - DB: sqlite |
76 |
| - commands: |
77 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
78 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
79 |
| - - cd ../server |
80 |
| - - ./occ app:check-code $APP_NAME -c strong-comparison -c deprecation |
81 |
| - - cd apps/$APP_NAME/ |
82 |
| - |
83 |
| -trigger: |
84 |
| - branch: |
85 |
| - - master |
86 |
| - - stable* |
87 |
| - event: |
88 |
| - - pull_request |
89 |
| - - push |
90 |
| - |
91 |
| -type: docker |
92 |
| - |
93 |
| ---- |
94 |
| -kind: pipeline |
95 |
| -name: compatibility-21 |
96 |
| - |
97 |
| -clone: |
98 |
| - depth: 1 |
99 |
| - |
100 |
| -steps: |
101 |
| - - name: app-code-check |
102 |
| - image: nextcloudci/php7.3:php7.3-5 |
103 |
| - environment: |
104 |
| - APP_NAME: user_saml |
105 |
| - CORE_BRANCH: stable21 |
106 |
| - DB: sqlite |
107 |
| - commands: |
108 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
109 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
110 |
| - - cd ../server |
111 |
| - - ./occ app:check-code $APP_NAME -c strong-comparison -c deprecation |
112 |
| - - cd apps/$APP_NAME/ |
113 |
| - |
114 |
| -trigger: |
115 |
| - branch: |
116 |
| - - master |
117 |
| - - stable* |
118 |
| - event: |
119 |
| - - pull_request |
120 |
| - - push |
121 |
| - |
122 |
| -type: docker |
123 |
| - |
124 |
| ---- |
125 |
| -kind: pipeline |
126 |
| -name: tests-master |
127 |
| - |
128 |
| -clone: |
129 |
| - depth: 1 |
130 |
| - |
131 |
| -steps: |
132 |
| - - name: php7.3 |
133 |
| - image: nextcloudci/php7.3:php7.3-5 |
134 |
| - environment: |
135 |
| - APP_NAME: user_saml |
136 |
| - CORE_BRANCH: master |
137 |
| - DB: sqlite |
138 |
| - commands: |
139 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
140 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
141 |
| - - cd ../server/apps/$APP_NAME |
142 |
| - - cd tests/unit/ |
143 |
| - - phpunit --configuration phpunit.xml |
144 |
| - - name: php7.4 |
145 |
| - image: nextcloudci/php7.4:php7.4-2 |
146 |
| - environment: |
147 |
| - APP_NAME: user_saml |
148 |
| - CORE_BRANCH: master |
149 |
| - DB: sqlite |
150 |
| - commands: |
151 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
152 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
153 |
| - - cd ../server/apps/$APP_NAME |
154 |
| - - cd tests/unit/ |
155 |
| - - phpunit --configuration phpunit.xml |
156 |
| - - name: php8.0 |
157 |
| - image: nextcloudci/php8.0:latest |
158 |
| - environment: |
159 |
| - APP_NAME: user_saml |
160 |
| - CORE_BRANCH: master |
161 |
| - DB: sqlite |
162 |
| - commands: |
163 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
164 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
165 |
| - - cd ../server/apps/$APP_NAME |
166 |
| - - cd tests/unit/ |
167 |
| - - phpunit --configuration phpunit.xml |
168 |
| - |
169 |
| -trigger: |
170 |
| - branch: |
171 |
| - - master |
172 |
| - - stable* |
173 |
| - event: |
174 |
| - - pull_request |
175 |
| - - push |
176 |
| - |
177 |
| -type: docker |
178 |
| - |
179 |
| ---- |
180 |
| -kind: pipeline |
181 | 2 | name: integration-tests-master
|
182 | 3 |
|
183 | 4 | clone:
|
@@ -211,61 +32,6 @@ trigger:
|
211 | 32 |
|
212 | 33 | type: docker
|
213 | 34 |
|
214 |
| ---- |
215 |
| -kind: pipeline |
216 |
| -name: tests-23 |
217 |
| - |
218 |
| -clone: |
219 |
| - depth: 1 |
220 |
| - |
221 |
| -steps: |
222 |
| - - name: php7.3 |
223 |
| - image: nextcloudci/php7.3:php7.3-5 |
224 |
| - environment: |
225 |
| - APP_NAME: user_saml |
226 |
| - CORE_BRANCH: stable23 |
227 |
| - DB: sqlite |
228 |
| - commands: |
229 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
230 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
231 |
| - - cd ../server/apps/$APP_NAME |
232 |
| - - cd tests/unit/ |
233 |
| - - phpunit --configuration phpunit.xml |
234 |
| - - name: php7.4 |
235 |
| - image: nextcloudci/php7.4:php7.4-2 |
236 |
| - environment: |
237 |
| - APP_NAME: user_saml |
238 |
| - CORE_BRANCH: stable23 |
239 |
| - DB: sqlite |
240 |
| - commands: |
241 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
242 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
243 |
| - - cd ../server/apps/$APP_NAME |
244 |
| - - cd tests/unit/ |
245 |
| - - phpunit --configuration phpunit.xml |
246 |
| - - name: php8.0 |
247 |
| - image: nextcloudci/php8.0:latest |
248 |
| - environment: |
249 |
| - APP_NAME: user_saml |
250 |
| - CORE_BRANCH: stable23 |
251 |
| - DB: sqlite |
252 |
| - commands: |
253 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
254 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
255 |
| - - cd ../server/apps/$APP_NAME |
256 |
| - - cd tests/unit/ |
257 |
| - - phpunit --configuration phpunit.xml |
258 |
| - |
259 |
| -trigger: |
260 |
| - branch: |
261 |
| - - master |
262 |
| - - stable* |
263 |
| - event: |
264 |
| - - pull_request |
265 |
| - - push |
266 |
| - |
267 |
| -type: docker |
268 |
| - |
269 | 35 | ---
|
270 | 36 | kind: pipeline
|
271 | 37 | name: integration-tests-stable23
|
@@ -301,61 +67,6 @@ trigger:
|
301 | 67 |
|
302 | 68 | type: docker
|
303 | 69 |
|
304 |
| ---- |
305 |
| -kind: pipeline |
306 |
| -name: tests-22 |
307 |
| - |
308 |
| -clone: |
309 |
| - depth: 1 |
310 |
| - |
311 |
| -steps: |
312 |
| - - name: php7.3 |
313 |
| - image: nextcloudci/php7.3:php7.3-5 |
314 |
| - environment: |
315 |
| - APP_NAME: user_saml |
316 |
| - CORE_BRANCH: stable22 |
317 |
| - DB: sqlite |
318 |
| - commands: |
319 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
320 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
321 |
| - - cd ../server/apps/$APP_NAME |
322 |
| - - cd tests/unit/ |
323 |
| - - phpunit --configuration phpunit.xml |
324 |
| - - name: php7.4 |
325 |
| - image: nextcloudci/php7.4:php7.4-2 |
326 |
| - environment: |
327 |
| - APP_NAME: user_saml |
328 |
| - CORE_BRANCH: stable22 |
329 |
| - DB: sqlite |
330 |
| - commands: |
331 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
332 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
333 |
| - - cd ../server/apps/$APP_NAME |
334 |
| - - cd tests/unit/ |
335 |
| - - phpunit --configuration phpunit.xml |
336 |
| - - name: php8.0 |
337 |
| - image: nextcloudci/php8.0:latest |
338 |
| - environment: |
339 |
| - APP_NAME: user_saml |
340 |
| - CORE_BRANCH: stable22 |
341 |
| - DB: sqlite |
342 |
| - commands: |
343 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
344 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
345 |
| - - cd ../server/apps/$APP_NAME |
346 |
| - - cd tests/unit/ |
347 |
| - - phpunit --configuration phpunit.xml |
348 |
| - |
349 |
| -trigger: |
350 |
| - branch: |
351 |
| - - master |
352 |
| - - stable* |
353 |
| - event: |
354 |
| - - pull_request |
355 |
| - - push |
356 |
| - |
357 |
| -type: docker |
358 |
| - |
359 | 70 | ---
|
360 | 71 | kind: pipeline
|
361 | 72 | name: integration-tests-stable22
|
@@ -389,60 +100,6 @@ trigger:
|
389 | 100 | - pull_request
|
390 | 101 | - push
|
391 | 102 |
|
392 |
| -type: docker |
393 |
| ---- |
394 |
| -kind: pipeline |
395 |
| -name: tests-21 |
396 |
| - |
397 |
| -clone: |
398 |
| - depth: 1 |
399 |
| - |
400 |
| -steps: |
401 |
| - - name: php7.3 |
402 |
| - image: nextcloudci/php7.3:php7.3-5 |
403 |
| - environment: |
404 |
| - APP_NAME: user_saml |
405 |
| - CORE_BRANCH: stable21 |
406 |
| - DB: sqlite |
407 |
| - commands: |
408 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
409 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
410 |
| - - cd ../server/apps/$APP_NAME |
411 |
| - - cd tests/unit/ |
412 |
| - - phpunit --configuration phpunit.xml |
413 |
| - - name: php7.4 |
414 |
| - image: nextcloudci/php7.4:php7.4-2 |
415 |
| - environment: |
416 |
| - APP_NAME: user_saml |
417 |
| - CORE_BRANCH: stable21 |
418 |
| - DB: sqlite |
419 |
| - commands: |
420 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
421 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
422 |
| - - cd ../server/apps/$APP_NAME |
423 |
| - - cd tests/unit/ |
424 |
| - - phpunit --configuration phpunit.xml |
425 |
| - - name: php8.0 |
426 |
| - image: nextcloudci/php8.0:latest |
427 |
| - environment: |
428 |
| - APP_NAME: user_saml |
429 |
| - CORE_BRANCH: stable21 |
430 |
| - DB: sqlite |
431 |
| - commands: |
432 |
| - - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh |
433 |
| - - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB |
434 |
| - - cd ../server/apps/$APP_NAME |
435 |
| - - cd tests/unit/ |
436 |
| - - phpunit --configuration phpunit.xml |
437 |
| - |
438 |
| -trigger: |
439 |
| - branch: |
440 |
| - - master |
441 |
| - - stable* |
442 |
| - event: |
443 |
| - - pull_request |
444 |
| - - push |
445 |
| - |
446 | 103 | type: docker
|
447 | 104 |
|
448 | 105 | ---
|
|
0 commit comments