forked from owncloud/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
202 lines (175 loc) Β· 4.17 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
workspace:
base: /var/www/owncloud
path: apps/oauth2
branches: [master, release*]
pipeline:
install-server:
image: owncloudci/core
pull: true
version: ${OC_VERSION}
db_type: ${DB_TYPE}
db_name: ${DB_NAME=owncloud}
db_host: ${DB_TYPE}
db_username: autotest
db_password: owncloud
db_timeout: 120
install-app:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- cd /var/www/owncloud/
- php occ a:l
- php occ a:e oauth2
- php occ a:e testing
- php occ a:l
- php occ config:system:set trusted_domains 1 --value=owncloud
- php occ log:manage --level 0
owncloud-log:
image: owncloud/ubuntu:16.04
detach: true
pull: true
commands:
- tail -f /var/www/owncloud/data/owncloud.log
webui-acceptance-tests:
image: owncloudci/php:${PHP_VERSION}
pull: true
environment:
- BROWSER=chrome
- SELENIUM_HOST=selenium
- TEST_SERVER_URL=http://owncloud
- SELENIUM_PORT=4444
- PLATFORM=Linux
- BEHAT_SUITE=${BEHAT_SUITE}
commands:
- chown www-data /var/www/owncloud -R
- chmod 777 /var/www/owncloud/tests/acceptance/filesForUpload -R
- cd /var/www/owncloud/tests/acceptance
- chmod +x run.sh
- ./run.sh --remote --config /var/www/owncloud/apps/oauth2/tests/acceptance/config/behat.yml
when:
matrix:
TEST_SUITE: acceptance
phpunit-unit-tests:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- make test-php-unit-dbg
when:
matrix:
TEST_SUITE: phpunit
php-cs-fixer:
image: owncloudci/php:${PHP_VERSION}
pull: true
commands:
- composer install
- vendor/bin/php-cs-fixer fix -v --diff --dry-run --allow-risky yes
when:
matrix:
TEST_SUITE: code-style
codecov:
image: plugins/codecov:2
secrets: [codecov_token]
pull: true
files:
- '*.xml'
paths:
- tests/output
when:
event: [push, pull_request]
matrix:
COVERAGE: true
notify:
image: plugins/slack:1
pull: true
secrets: [ slack_webhook ]
channel: builds
when:
status: [ failure, changed ]
event: [ push, tag ]
services:
owncloud:
image: owncloudci/php:${PHP_VERSION}
pull: true
environment:
- APACHE_WEBROOT=/var/www/owncloud/
command: [ "/usr/local/bin/apachectl", "-e", "debug", "-D", "FOREGROUND" ]
when:
matrix:
TEST_SUITE: acceptance
selenium:
image: selenium/standalone-chrome-debug:latest
pull: true
when:
matrix:
TEST_SUITE: acceptance
mysql:
image: mysql:5.5
environment:
- MYSQL_USER=autotest
- MYSQL_PASSWORD=owncloud
- MYSQL_DATABASE=${DB_NAME=owncloud}
- MYSQL_ROOT_PASSWORD=owncloud
when:
matrix:
DB_TYPE: mysql
pgsql:
image: postgres:9.4
environment:
- POSTGRES_USER=autotest
- POSTGRES_PASSWORD=owncloud
- POSTGRES_DB=${DB_NAME=owncloud}
when:
matrix:
DB_TYPE: pgsql
oci:
image: deepdiver/docker-oracle-xe-11g
environment:
- ORACLE_USER=system
- ORACLE_PASSWORD=oracle
- ORACLE_DB=${DB_NAME=owncloud}
when:
matrix:
DB_TYPE: oci
matrix:
include:
# code style
- PHP_VERSION: 7.1
OC_VERSION: daily-master-qa
TEST_SUITE: code-style
# acceptance tests
- PHP_VERSION: 7.1
OC_VERSION: daily-master-qa
TEST_SUITE: acceptance
BEHAT_SUITE: webUIOauth2
- PHP_VERSION: 5.6
OC_VERSION: daily-stable10-qa
TEST_SUITE: acceptance
BEHAT_SUITE: webUIOauth2
# unit tests
- PHP_VERSION: 7.2
OC_VERSION: daily-stable10-qa
TEST_SUITE: phpunit
DB_TYPE: mysql
COVERAGE: true
- PHP_VERSION: 7.2
OC_VERSION: daily-stable10-qa
TEST_SUITE: phpunit
DB_TYPE: pgsql
- PHP_VERSION: 7.2
OC_VERSION: daily-stable10-qa
TEST_SUITE: phpunit
DB_TYPE: oci
DB_NAME: XE
DB_USERNAME: autotest
- PHP_VERSION: 5.6
OC_VERSION: daily-stable10-qa
TEST_SUITE: phpunit
DB_TYPE: sqlite
- PHP_VERSION: 7.1
OC_VERSION: daily-master-qa
TEST_SUITE: phpunit
DB_TYPE: sqlite
- PHP_VERSION: 7.2
OC_VERSION: daily-master-qa
TEST_SUITE: phpunit
DB_TYPE: sqlite