Merge pull request #1382 from nextcloud/stable10-backport-1380
[stable10] update drone.yml to 0.5
This commit is contained in:
commit
8cb1bc5560
94
.drone.yml
94
.drone.yml
|
@ -1,80 +1,142 @@
|
||||||
build:
|
pipeline:
|
||||||
jsunit:
|
jsunit:
|
||||||
image: nextcloudci/jsunit:1.0.6
|
image: nextcloudci/jsunit:1.0.6
|
||||||
commands:
|
commands:
|
||||||
- ./autotest-js.sh
|
- ./autotest-js.sh
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
TESTS: jsunit
|
||||||
nodb-php5.4:
|
nodb-php5.4:
|
||||||
image: nextcloudci/php5.4:1.0.7
|
image: nextcloudci/php5.4:1.0.7
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: NODB
|
||||||
|
PHP: 5.4
|
||||||
nodb-php5.5:
|
nodb-php5.5:
|
||||||
image: nextcloudci/php5.5:1.0.7
|
image: nextcloudci/php5.5:1.0.7
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: NODB
|
||||||
|
PHP: 5.5
|
||||||
nodb-php5.6:
|
nodb-php5.6:
|
||||||
image: nextcloudci/php5.6:1.0.6
|
image: nextcloudci/php5.6:1.0.6
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: NODB
|
||||||
|
PHP: 5.6
|
||||||
nodb-php7.0:
|
nodb-php7.0:
|
||||||
image: nextcloudci/php7.0:1.0.9
|
image: nextcloudci/php7.0:1.0.9
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: NODB
|
||||||
|
PHP: "7.0"
|
||||||
sqlite-php5.4:
|
sqlite-php5.4:
|
||||||
image: nextcloudci/php5.4:1.0.7
|
image: nextcloudci/php5.4:1.0.7
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: sqlite
|
||||||
|
PHP: 5.4
|
||||||
sqlite-php5.5:
|
sqlite-php5.5:
|
||||||
image: nextcloudci/php5.5:1.0.7
|
image: nextcloudci/php5.5:1.0.7
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: sqlite
|
||||||
|
PHP: 5.5
|
||||||
sqlite-php5.6:
|
sqlite-php5.6:
|
||||||
image: nextcloudci/php5.6:1.0.6
|
image: nextcloudci/php5.6:1.0.6
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: sqlite
|
||||||
|
PHP: 5.6
|
||||||
sqlite-php7.0:
|
sqlite-php7.0:
|
||||||
image: nextcloudci/php7.0:1.0.9
|
image: nextcloudci/php7.0:1.0.9
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: sqlite
|
||||||
|
PHP: "7.0"
|
||||||
mysql-php5.6:
|
mysql-php5.6:
|
||||||
image: nextcloudci/php5.6:1.0.6
|
image: nextcloudci/php5.6:1.0.6
|
||||||
commands:
|
commands:
|
||||||
- sleep 15 # gives the database enough time to initialize
|
- sleep 15 # gives the database enough time to initialize
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
|
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: mysql
|
||||||
|
PHP: 5.6
|
||||||
postgres-php5.6:
|
postgres-php5.6:
|
||||||
image: nextcloudci/php5.6:1.0.6
|
image: nextcloudci/php5.6:1.0.6
|
||||||
commands:
|
commands:
|
||||||
- sleep 10 # gives the database enough time to initialize
|
- sleep 10 # gives the database enough time to initialize
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql
|
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh pgsql
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: postgres
|
||||||
|
PHP: 5.6
|
||||||
integration:
|
integration:
|
||||||
image: nextcloudci/php7.0:1.0.9
|
image: nextcloudci/php7.0:1.0.9
|
||||||
commands:
|
commands:
|
||||||
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
|
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- ./occ maintenance:install --admin-pass=admin
|
- ./occ maintenance:install --admin-pass=admin
|
||||||
- cd build/integration
|
- cd build/integration
|
||||||
- ./run.sh
|
- ./run.sh
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
TESTS: integration
|
||||||
|
|
||||||
compose:
|
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- TESTS: integration
|
||||||
|
- TESTS: jsunit
|
||||||
|
- DB: NODB
|
||||||
|
PHP: 5.4
|
||||||
|
- DB: NODB
|
||||||
|
PHP: 5.5
|
||||||
|
- DB: NODB
|
||||||
|
PHP: 5.6
|
||||||
|
- DB: NODB
|
||||||
|
PHP: 7.0
|
||||||
|
- DB: sqlite
|
||||||
|
PHP: 5.4
|
||||||
|
- DB: sqlite
|
||||||
|
PHP: 5.5
|
||||||
|
- DB: sqlite
|
||||||
|
PHP: 5.6
|
||||||
|
- DB: sqlite
|
||||||
|
PHP: 7.0
|
||||||
|
- DB: mysql
|
||||||
|
PHP: 5.6
|
||||||
|
- DB: postgres
|
||||||
|
PHP: 5.6
|
||||||
|
|
||||||
|
services:
|
||||||
cache:
|
cache:
|
||||||
image: redis
|
image: redis
|
||||||
postgres:
|
postgres:
|
||||||
|
@ -82,6 +144,9 @@ compose:
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=oc_autotest
|
- POSTGRES_USER=oc_autotest
|
||||||
- POSTGRES_PASSWORD=oc_autotest
|
- POSTGRES_PASSWORD=oc_autotest
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: postgres
|
||||||
mysql:
|
mysql:
|
||||||
image: mysql
|
image: mysql
|
||||||
environment:
|
environment:
|
||||||
|
@ -89,3 +154,6 @@ compose:
|
||||||
- MYSQL_USER=oc_autotest
|
- MYSQL_USER=oc_autotest
|
||||||
- MYSQL_PASSWORD=owncloud
|
- MYSQL_PASSWORD=owncloud
|
||||||
- MYSQL_DATABASE=oc_autotest
|
- MYSQL_DATABASE=oc_autotest
|
||||||
|
when:
|
||||||
|
matrix:
|
||||||
|
DB: mysql
|
||||||
|
|
Loading…
Reference in New Issue