diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-07-08 15:12:36 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-07-08 19:36:17 +0200 |
commit | b4e22398d6d9f908d2b8624781081219bc7c7255 (patch) | |
tree | 556e6b17b571068d1c947c42e07cc2312257fa0e /.drone.yml | |
parent | 80b4efa9e05675ba29ccf4670248ec2212feec1c (diff) | |
download | nextcloud-server-b4e22398d6d9f908d2b8624781081219bc7c7255.tar.gz nextcloud-server-b4e22398d6d9f908d2b8624781081219bc7c7255.zip |
Bump drone to use newer php7 docker
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.drone.yml b/.drone.yml index 93d122fa9e4..5d8ed69b6ae 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,27 +22,27 @@ build: - git submodule update --init - NOCOVERAGE=true ./autotest.sh sqlite sqlite: - image: nextcloudci/php7.0:1.0.9 + image: nextcloudci/php7.0:1.0.10 commands: - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues - git submodule update --init - NOCOVERAGE=true ./autotest.sh sqlite mysql: - image: nextcloudci/php7.0:1.0.9 + image: nextcloudci/php7.0:1.0.10 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 - NOCOVERAGE=true ./autotest.sh mysql postgres: - image: nextcloudci/php7.0:1.0.9 + image: nextcloudci/php7.0:1.0.10 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 - NOCOVERAGE=true ./autotest.sh pgsql integration: - image: nextcloudci/php7.0:1.0.9 + image: nextcloudci/php7.0:1.0.10 commands: - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues - git submodule update --init |