forked from nextcloud/spreed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
304 lines (291 loc) Β· 8.22 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
pipeline:
eslint:
image: nextcloudci/eslint:eslint-1
commands:
- ./run-eslint.sh
when:
matrix:
TESTS: eslint
stylelint:
image: nextcloudci/stylelint:stylelint-1
commands:
- ./run-stylelint.sh
when:
matrix:
TESTS: stylelint
check-app-compatbility:
image: nextcloudci/php7.3:php7.3-1
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
# Code checker
- ./occ app:check-code $APP_NAME
- cd apps/$APP_NAME/
when:
matrix:
TESTS: check-app-compatbility
handlebars:
image: node
commands:
- npm install -g handlebars
- ./check-handlebars-templates.sh
when:
matrix:
TESTS: handlebars
syntax-php7.1:
image: nextcloudci/php7.1:php7.1-16
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
- composer install
- ./lib/composer/bin/parallel-lint apps/$APP_NAME/
when:
matrix:
TESTS: syntax-php7.1
syntax-php7.3:
image: nextcloudci/php7.3:php7.3-1
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
- composer install
- ./lib/composer/bin/parallel-lint apps/$APP_NAME/
when:
matrix:
TESTS: syntax-php7.3
signed-off-check:
image: nextcloudci/php7.3:php7.3-1
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
- php ./build/signed-off-checker.php
secrets: [ github_token ]
when:
matrix:
TESTS: signed-off-check
php7.1:
image: nextcloudci/php7.1:php7.1-16
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- ./occ app:enable $APP_NAME
- cd apps/$APP_NAME
# Run phpunit tests
- cd tests/php/
- phpunit --configuration phpunit.xml
when:
matrix:
TESTS: php7.1
php7.2:
image: nextcloudci/php7.2:php7.2-12
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- ./occ app:enable $APP_NAME
- cd apps/$APP_NAME
# Run phpunit tests
- cd tests/php/
- phpunit --configuration phpunit.xml
when:
matrix:
TESTS: php7.2
php7.3:
image: nextcloudci/php7.3:php7.3-1
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
- DB=sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- ./occ app:enable $APP_NAME
- cd apps/$APP_NAME
# Run phpunit tests
- cd tests/php/
- phpunit --configuration phpunit.xml
when:
matrix:
TESTS: php7.3
php7.1-integration:
image: nextcloudci/php7.1:php7.1-16
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- ./occ app:enable $APP_NAME
- cd apps/$APP_NAME
# Run integration tests
- cd tests/integration/
- bash run.sh $TESTS_INTEGRATION
when:
matrix:
TESTS: php7.1-integration
jsunit:
image: nextcloudci/jsunit:jsunit-5
commands:
- unset PHANTOMJS_BIN
- npm install
- node_modules/karma/bin/karma start --single-run
when:
matrix:
TESTS: jsunit
acceptance:
image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
environment:
- APP_NAME=spreed
- CORE_BRANCH=master
commands:
# Pre-setup steps
- git clone --depth 1 -b $CORE_BRANCH https://github.com/nextcloud/server ../server
- cp -R . ../server/apps/$APP_NAME
- cd ../server
- git submodule update --init
- ln --symbolic `pwd` /var/www/html
# Run acceptance tests
- tests/acceptance/run-local.sh --acceptance-tests-dir apps/spreed/tests/acceptance --timeout-multiplier 10 --nextcloud-server-domain acceptance --selenium-server selenium:4444 allow-git-repository-modifications features/$TESTS_ACCEPTANCE.feature
when:
matrix:
TESTS: acceptance
matrix:
include:
# Checks
- TESTS: eslint
- TESTS: stylelint
- TESTS: check-app-compatbility
- TESTS: handlebars
- TESTS: syntax-php7.1
- TESTS: syntax-php7.3
- TESTS: signed-off-check
# Unit tests
- TESTS: php7.1
- TESTS: php7.2
- TESTS: php7.3
- TESTS: jsunit
# Integration tests sqlite
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/callapi
DB: sqlite
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/chat
DB: sqlite
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/conversation
DB: sqlite
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/sharing
DB: sqlite
# Integration tests MySQL 5.7
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/callapi
DB: mysql
DATABASEHOST: mysql-5.7
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/chat
DB: mysql
DATABASEHOST: mysql-5.7
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/conversation
DB: mysql
DATABASEHOST: mysql-5.7
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/sharing
DB: mysql
DATABASEHOST: mysql-5.7
# Integration tests Postgres 10
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/callapi
DB: pgsql
DATABASEHOST: postgres-10
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/chat
DB: pgsql
DATABASEHOST: postgres-10
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/conversation
DB: pgsql
DATABASEHOST: postgres-10
- TESTS: php7.1-integration
TESTS_INTEGRATION: features/sharing
DB: pgsql
DATABASEHOST: postgres-10
# Acceptance tests
- TESTS: acceptance
TESTS_ACCEPTANCE: app-files
- TESTS: acceptance
TESTS_ACCEPTANCE: chat
- TESTS: acceptance
TESTS_ACCEPTANCE: conversation
- TESTS: acceptance
TESTS_ACCEPTANCE: public-share-auth
- TESTS: acceptance
TESTS_ACCEPTANCE: room-shares
services:
mysql-5.7:
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=owncloud
- MYSQL_USER=oc_autotest
- MYSQL_PASSWORD=owncloud
- MYSQL_DATABASE=oc_autotest
when:
matrix:
DATABASEHOST: mysql-5.7
postgres-10:
image: postgres:10
environment:
- POSTGRES_USER=oc_autotest
- POSTGRES_DB=oc_autotest_dummy
- POSTGRES_PASSWORD=
when:
matrix:
DATABASEHOST: postgres-10
selenium:
image: selenium/standalone-firefox:2.53.1-beryllium
environment:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
- JAVA_OPTS=-Dselenium.LOGGER.level=WARNING
when:
matrix:
TESTS: acceptance