forked from owncloud/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
412 lines (372 loc) · 10.3 KB
/
.drone.yml
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
workspace:
base: /var/www/owncloud
path: phoenix
branches: [master, release*, develop*]
pipeline:
build-docker-image:
image: toolhippie/docker:latest
pull: true
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- docker build -t owncloud/phoenix:${DRONE_COMMIT_SHA}-${DRONE_BUILD_NUMBER} .
when:
event: [ push ]
matrix:
AFTER_JOB: true
npm-install:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
commands:
- yarn install
build-phoenix:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
commands:
- yarn dist
- cp tests/drone/config.json dist/config.json
when:
matrix:
RUN_PHOENIX: true
lint-test:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
commands:
- cd /var/www/owncloud/phoenix
- yarn run lint
when:
matrix:
TEST_SUITE: lint-test
install-server:
image: owncloudci/core
version: ${OC_VERSION=daily-master-qa}
pull: true
db_type: ${DB_TYPE=sqlite}
db_name: ${DB_NAME=owncloud}
db_host: ${DB_TYPE=sqlite}
db_username: owncloud
db_password: owncloud
core_path: /var/www/owncloud/
when:
matrix:
NEED_SERVER: true
clone-oauth:
image: owncloud/ubuntu:16.04
pull: true
commands:
- git clone -b master https://github.com/owncloud/oauth2.git /var/www/owncloud/apps/oauth2
when:
matrix:
NEED_SERVER: true
configure-server:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
commands:
- cd /var/www/owncloud/
- php occ a:e testing
- php occ config:system:set trusted_domains 1 --value=owncloud
- php occ config:system:set cors.allowed-domains 0 --value=http://phoenix:8300
- php occ log:manage --level 0
- php occ config:list
- php occ a:e oauth2
- php occ oauth2:add-client Phoenix Cxfj9F9ZZWQbQZps1E1M0BszMz6OOFq3lxjSuc8Uh4HLEYb9KIfyRMmgY5ibXXrU 930C6aA0U1VhM03IfNiheR2EwSzRi4hRSpcNqIhhbpeSGU6h38xssVfNcGP0sSwQ http://phoenix:8300/oidc-callback.html
- php occ config:system:set skeletondirectory --value=/var/www/owncloud/apps/testing/data/webUISkeleton
when:
matrix:
NEED_SERVER: true
owncloud-log:
image: owncloud/ubuntu:16.04
detach: true
pull: true
commands:
- tail -f /var/www/owncloud/data/owncloud.log
when:
matrix:
NEED_SERVER: true
fix-permissions:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
commands:
- cd /var/www/owncloud/
- chown www-data * -R
when:
matrix:
NEED_SERVER: true
webui-acceptance-tests:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
environment:
- TEST_CONTEXT=${TEST_CONTEXT}
- SCREEN_RESOLUTION=${SCREEN_RESOLUTION}
- TEST_TAGS=${TEST_TAGS}
commands:
- cd /var/www/owncloud/phoenix
- curl http://phoenix:8300/oidc-callback.html
- yarn run acceptance-tests-drone
when:
matrix:
TEST_SUITE: acceptance
upload-screenshots:
image: plugins/s3
bucket: phoenix
acl: public-read
source: /var/www/owncloud/phoenix/tests/reports/screenshots/**/*
target: /screenshots/${DRONE_BUILD_NUMBER}
path_style: true
endpoint: https://minio.owncloud.com/
strip_prefix: /var/www/owncloud/phoenix/tests/reports/screenshots
secrets: [ aws_access_key_id, aws_secret_access_key ]
when:
status: [ failure ]
matrix:
TEST_SUITE: acceptance
build-github-comment:
image: owncloud/ubuntu:16.04
pull: true
environment:
- TEST_CONTEXT=${TEST_CONTEXT}
commands:
- cd /var/www/owncloud/phoenix/tests/reports/screenshots/
- 'echo "<details><summary>:boom: Acceptance tests <strong>${TEST_CONTEXT}</strong> failed. Please find the screenshots inside ...</summary>\n\n${DRONE_BUILD_LINK}/${DRONE_JOB_NUMBER}\n\n<p>\n\n" >> comments.file'
- for f in *.png; do echo '!'"[$f](https://minio.owncloud.com/phoenix/screenshots/${DRONE_BUILD_NUMBER}/$f)" >> comments.file; done
- echo "\n</p></details>" >> comments.file
- more comments.file
when:
status: [ failure ]
matrix:
TEST_SUITE: acceptance
github-comment:
image: jmccann/drone-github-comment:1
secrets: [ plugin_api_key ]
message_file: /var/www/owncloud/phoenix/tests/reports/screenshots/comments.file
when:
status: [ failure ]
matrix:
TEST_SUITE: acceptance
build-release:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
commands:
- cd /var/www/owncloud/phoenix
- make -f Makefile.release dist
when:
event: [ push ]
matrix:
AFTER_JOB: true
deploy-staging:
image: drillster/drone-rsync:latest
pull: true
secrets: [ rsync_key ]
user: deploy
hosts: pixie.owncloud.systems
port: 22
recursive: true
delete: true
source: dist/
target: /home/deploy/phoenix
script:
- sudo docker exec phoenix occ maintenance:mode --on
- sudo rsync -az --chown=www-data:www-data -r --del --exclude config.json /home/deploy/phoenix/ /var/lib/phoenix/apps/phoenix
- sudo docker exec phoenix occ maintenance:mode --off
- sudo docker exec phoenix owncloud migrate
when:
event: [ push ]
branch: [ master ]
matrix:
AFTER_JOB: true
services:
phoenix:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
commands:
- mkdir dist
- make run SERVER_HOST=phoenix:8300
when:
matrix:
RUN_PHOENIX: true
owncloud:
image: owncloudci/php:${PHP_VERSION=7.1}
pull: true
environment:
- APACHE_WEBROOT=/var/www/owncloud/
command: [ "/usr/local/bin/apachectl", "-e", "debug", "-D", "FOREGROUND" ]
when:
matrix:
NEED_SERVER: true
selenium:
image: selenium/standalone-chrome-debug:latest
pull: true
when:
matrix:
TEST_SUITE: acceptance
mysql:
image: mysql:5.5
environment:
- MYSQL_USER=owncloud
- MYSQL_PASSWORD=owncloud
- MYSQL_DATABASE=owncloud
- MYSQL_ROOT_PASSWORD=owncloud
when:
matrix:
DB_TYPE: mysql
docker:
image: docker:18.04-dind
when:
matrix:
AFTER_JOB: true
matrix:
include:
# lint test
- TEST_SUITE: lint-test
# acceptance test
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUIAdminSettings
# TEST_TAGS: 'not @skip'
#
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUIComments
# TEST_TAGS: 'not @skip'
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUIFavorites
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUIFiles
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUILogin
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUIMoveFilesFolders
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUINotifications
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUIRenameFiles
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUIRenameFolders
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUIRestrictSharing
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
#
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUISharingAcceptShares
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
#
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUISharingExternal
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUISharingInternalGroups
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUISharingInternalUsers
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUISharingNotifications
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
#
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUISharingPublic
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
#
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUITags
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUITrashbin
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_CONTEXT: webUIUpload
TEST_TAGS: 'not @skip'
DB_TYPE: mysql
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUIWebdavLockProtection
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
#
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUIWebdavLocks
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
#
# - TEST_SUITE: acceptance
# NEED_SERVER: true
# RUN_PHOENIX: true
# TEST_CONTEXT: webUITags
# TEST_TAGS: 'not @skip'
# DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_TAGS: '@smokeTest and not @skipOnXGAPortraitResolution and not @skip'
SCREEN_RESOLUTION: 768x1024
DB_TYPE: mysql
- TEST_SUITE: acceptance
NEED_SERVER: true
RUN_PHOENIX: true
TEST_TAGS: '@smokeTest and not @skipOnIphoneResolution and not @skip'
SCREEN_RESOLUTION: 375x812
DB_TYPE: mysql
# After drone all jobs completes
- AFTER_JOB: true