diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-12-15 00:40:12 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-01-02 15:02:18 +0100 |
commit | 3c34b8577c7f773bd697512b734062913940a3fd (patch) | |
tree | cfdd1af0292b0edcda31de5829e1c43cf4aebdbf /.drone.yml | |
parent | 60a8a1a84484fd0f3ae8a7f46212850cd43b6c5c (diff) | |
download | nextcloud-server-3c34b8577c7f773bd697512b734062913940a3fd.tar.gz nextcloud-server-3c34b8577c7f773bd697512b734062913940a3fd.zip |
Add test execution against legacy DAV backend
Since the tests to quite hugely rely on sync tokens being present I also included those in the legacy backend.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 36 |
1 files changed, 28 insertions, 8 deletions
diff --git a/.drone.yml b/.drone.yml index 0fec56bd8e7..1e35b2a2fe8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -86,24 +86,42 @@ pipeline: when: matrix: TESTS: litmus-v2 - caldavtester: + caldavtester-new-endpoint: image: nextcloudci/litmus-php7.0:litmus-php7.0-4 commands: - bash tests/travis/install.sh sqlite - bash apps/dav/tests/travis/caldav/install.sh - - bash apps/dav/tests/travis/caldav/script.sh + - bash apps/dav/tests/travis/caldav/script-new-endpoint.sh when: matrix: - TESTS: caldavtester - carddavtester: + TESTS: caldavtester-new-endpoint + caldavtester-old-endpoint: + image: nextcloudci/litmus-php7.0:litmus-php7.0-4 + commands: + - bash tests/travis/install.sh sqlite + - bash apps/dav/tests/travis/caldav/install.sh + - bash apps/dav/tests/travis/caldav/script-old-endpoint.sh + when: + matrix: + TESTS: caldavtester-old-endpoint + carddavtester-new-endpoint: + image: nextcloudci/litmus-php7.0:litmus-php7.0-4 + commands: + - bash tests/travis/install.sh sqlite + - bash apps/dav/tests/travis/carddav/install.sh + - bash apps/dav/tests/travis/carddav/script-new-endpoint.sh + when: + matrix: + TESTS: carddavtester-new-endpoint + carddavtester-old-endpoint: image: nextcloudci/litmus-php7.0:litmus-php7.0-4 commands: - bash tests/travis/install.sh sqlite - bash apps/dav/tests/travis/carddav/install.sh - - bash apps/dav/tests/travis/carddav/script.sh + - bash apps/dav/tests/travis/carddav/script-old-endpoint.sh when: matrix: - TESTS: carddavtester + TESTS: carddavtester-old-endpoint sqlite-php7.0-samba-native: image: nextcloudci/samba-native-php7.0:samba-native-php7.0-1 commands: @@ -470,8 +488,10 @@ matrix: - TESTS: syntax-php7.1 - TESTS: litmus-v1 - TESTS: litmus-v2 - - TESTS: caldavtester - - TESTS: carddavtester + - TESTS: caldavtester-old-endpoint + - TESTS: caldavtester-new-endpoint + - TESTS: carddavtester-new-endpoint + - TESTS: carddavtester-old-endpoint - TESTS: object-store OBJECT_STORE: s3 - TESTS: sqlite-php7.0-samba-native |