aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-07-06 15:01:11 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-07-06 15:01:11 +0200
commite328d98b6c45f89625f1212ef4c78f9600597a92 (patch)
treee6ae287fd3593fa6b85799e1de03eb5d36f1b365 /.drone.yml
parente1abe5a62b34d5de94b258b665ca612a973e2dbd (diff)
downloadnextcloud-server-e328d98b6c45f89625f1212ef4c78f9600597a92.tar.gz
nextcloud-server-e328d98b6c45f89625f1212ef4c78f9600597a92.zip
Add PHP 5.4 and 5.5 jobs to CI
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index 79f6d8262be..07ad955acfa 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -3,6 +3,20 @@ build:
image: nextcloudci/jsunit:1.0.6
commands:
- ./autotest-js.sh
+ sqlite-php5.4:
+ image: nextcloudci/php5.4:1.0.7
+ 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=''
+ - NOCOVERAGE=true ./autotest.sh sqlite
+ sqlite-php5.5:
+ image: nextcloudci/php5.5:1.0.7
+ 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=''
+ - NOCOVERAGE=true ./autotest.sh sqlite
sqlite:
image: nextcloudci/php5.6:1.0.6
commands: