Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-07-06 12:27:35 +0300
committerMorris Jobke <hey@morrisjobke.de>2016-07-06 14:25:13 +0300
commitcb69571cda0d894d085e8d62a44bd8d3769e8df1 (patch)
treece3de7c7bf59875312582531abfe6cda2d097f10 /.drone.yml
parentfcf25864d6d18bf5cf55ed18370b334978a86daf (diff)
Fix docker image naming issue for CI
* wrongly named PHP7 - it is PHP 5.6 * moved integration tests at the very end
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml23
1 files changed, 12 insertions, 11 deletions
diff --git a/.drone.yml b/.drone.yml
index fc86e72c2b9..79f6d8262be 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -1,36 +1,37 @@
build:
- integration:
- image: morrisjobke/nextcloud-ci-php7:1.0.3
- commands:
- - git submodule update --init
- - ./occ maintenance:install --admin-pass=admin
- - cd build/integration
- - ./run.sh
jsunit:
- image: morrisjobke/nextcloud-ci-jsunit:1.0.2
+ image: nextcloudci/jsunit:1.0.6
commands:
- ./autotest-js.sh
sqlite:
- image: morrisjobke/nextcloud-ci-php7:1.0
+ image: nextcloudci/php5.6:1.0.6
commands:
- rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
- git submodule update --init
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database sqlite --database-pass=''
- ./autotest.sh sqlite
mysql:
- image: morrisjobke/nextcloud-ci-php7:1.0.4
+ image: nextcloudci/php5.6:1.0.6
commands:
- 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
- ./autotest.sh mysql
postgres:
- image: morrisjobke/nextcloud-ci-php7:1.0
+ image: nextcloudci/php5.6:1.0.6
commands:
- 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
- ./autotest.sh pgsql
+ integration:
+ image: nextcloudci/php5.6:1.0.6
+ commands:
+ - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
+ - git submodule update --init
+ - ./occ maintenance:install --admin-pass=admin
+ - cd build/integration
+ - ./run.sh
compose:
cache: