This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.drone.yml
295 lines (264 loc) · 6.99 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
workspace:
base: /var/www/owncloud
path: apps/user_management
branches: [ master, release* ]
pipeline:
install-server:
image: owncloudci/core
pull: true
exclude: "apps/user_management"
version: ${OC_VERSION}
db_type: mysql
db_name: owncloud
db_host: mysql:3306
db_username: owncloud
db_password: owncloud
when:
matrix:
NEED_SERVER: true
install-testrunner:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- git clone -b master --depth=1 https://github.com/owncloud/core.git /var/www/owncloud/testrunner
- cd /var/www/owncloud/testrunner
- make install-composer-deps
- make vendor-bin-deps
when:
matrix:
NEED_TARBALL: true
install-app:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- cd /var/www/owncloud/
- php occ a:l
- php occ a:e user_management
- php occ a:e testing
- php occ a:l
- php occ config:system:set trusted_domains 1 --value=server
- php occ config:system:set trusted_domains 2 --value=federated
- php occ log:manage --level 2
- php occ config:system:set --value true --type boolean integrity.check.disabled
when:
matrix:
NEED_INSTALL_APP: true
fix-permissions:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- chown www-data /var/www/owncloud -R
- if [ "${NEED_TARBALL}" = "true" ];
then chmod 777 /var/www/owncloud/testrunner/tests/acceptance/filesForUpload -R;
chmod +x /var/www/owncloud/testrunner/tests/acceptance/run.sh;
else chmod 777 /var/www/owncloud/tests/acceptance/filesForUpload -R;
chmod +x /var/www/owncloud/tests/acceptance/run.sh; fi
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
owncloud-coding-standard:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- make test-php-style
when:
matrix:
TEST_SUITE: owncloud-coding-standard
phpunit-tests:
image: owncloudci/php:${PHP_VERSION}
pull: true
environment:
- PHP_VERSION=${PHP_VERSION}
- COVERAGE=${COVERAGE}
commands:
- if [ -z "${COVERAGE}" ]; then make test-php-unit; fi
- if [ "${COVERAGE}" = "true" ]; then make test-php-unit-dbg; fi
when:
matrix:
TEST_SUITE: phpunit
webui-acceptance-tests:
image: owncloudci/php:${PHP_VERSION}
pull: true
environment:
- BROWSER=chrome #chrome or firefox
- SELENIUM_HOST=selenium
- SELENIUM_PORT=4444
- TEST_SERVER_URL=http://server
- TEST_SERVER_FED_URL=http://federated
- PLATFORM=Linux
- BEHAT_SUITE=${BEHAT_SUITE}
- MAILHOG_HOST=email
commands:
- if [ "${NEED_TARBALL}" = "true" ]; then cd /var/www/owncloud/testrunner; fi
- make test-acceptance-webui
when:
matrix:
TEST_SUITE: web-acceptance
js-tests:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- make test-js
when:
matrix:
TEST_SUITE: javascript
codecov:
image: plugins/codecov:2
secrets: [codecov_token]
pull: true
paths:
- tests/output/clover.xml
files:
- '*.xml'
when:
matrix:
COVERAGE: true
notify:
image: plugins/slack:1
pull: true
secrets: [ slack_webhook ]
channel: builds
when:
status: [ failure, changed ]
event: [ push, tag ]
services:
server:
image: owncloudci/php:${PHP_VERSION}
pull: true
environment:
- APACHE_WEBROOT=/var/www/owncloud/
command: [ "/usr/local/bin/apachectl", "-e", "debug", "-D", "FOREGROUND" ]
when:
matrix:
NEED_SERVER: true
federated:
image: owncloudci/php:${PHP_VERSION}
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:3.141.59-oxygen
pull: true
when:
matrix:
TEST_SUITE: web-acceptance
mysql:
image: mysql:5.5
environment:
- MYSQL_USER=owncloud
- MYSQL_PASSWORD=owncloud
- MYSQL_DATABASE=owncloud
- MYSQL_ROOT_PASSWORD=owncloud
when:
matrix:
NEED_SERVER: true
email:
image: mailhog/mailhog
pull: true
when:
matrix:
USE_EMAIL: true
matrix:
include:
# owncloud-coding-standard
- PHP_VERSION: 7.2
TEST_SUITE: owncloud-coding-standard
- PHP_VERSION: 7.1
TEST_SUITE: owncloud-coding-standard
- TEST_SUITE: javascript
PHP_VERSION: 7.1
OC_VERSION: daily-master-qa
NEED_SERVER: true
NEED_INSTALL_APP: true
#unit tests
- TEST_SUITE: phpunit
PHP_VERSION: 7.1
OC_VERSION: daily-master-qa
NEED_SERVER: true
NEED_INSTALL_APP: true
COVERAGE: true
- TEST_SUITE: phpunit
PHP_VERSION: 7.2
OC_VERSION: daily-master-qa
NEED_SERVER: true
NEED_INSTALL_APP: true
- TEST_SUITE: phpunit
PHP_VERSION: 7.3
OC_VERSION: daily-master-qa
NEED_SERVER: true
NEED_INSTALL_APP: true
#acceptance tests
- TEST_SUITE: web-acceptance
OC_VERSION: daily-master-qa
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUIAddUsers
USE_EMAIL: true
- TEST_SUITE: web-acceptance
OC_VERSION: daily-master-qa
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUIManageQuota
USE_EMAIL: true
- TEST_SUITE: web-acceptance
OC_VERSION: daily-master-qa
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUIManageUsersGroups
USE_EMAIL: true
- TEST_SUITE: web-acceptance
OC_VERSION: daily-master-qa
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUISettingsMenu
USE_EMAIL: true
# Owncloud Tarball
- TEST_SUITE: web-acceptance
OC_VERSION: 10.2.1
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUIAddUsers
USE_EMAIL: true
NEED_TARBALL: true
- TEST_SUITE: web-acceptance
OC_VERSION: 10.2.1
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUIManageQuota
USE_EMAIL: true
NEED_TARBALL: true
- TEST_SUITE: web-acceptance
OC_VERSION: 10.2.1
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUIManageUsersGroups
USE_EMAIL: true
NEED_TARBALL: true
- TEST_SUITE: web-acceptance
OC_VERSION: 10.2.1
PHP_VERSION: 7.1
NEED_SERVER: true
NEED_INSTALL_APP: true
BEHAT_SUITE: webUISettingsMenu
USE_EMAIL: true
NEED_TARBALL: true