From e328d98b6c45f89625f1212ef4c78f9600597a92 Mon Sep 17 00:00:00 2001
From: Morris Jobke <hey@morrisjobke.de>
Date: Wed, 6 Jul 2016 15:01:11 +0200
Subject: [PATCH] Add PHP 5.4 and 5.5 jobs to CI

---
 .drone.yml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

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:
-- 
GitLab