diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-10 19:10:24 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-10 19:10:24 +0100 |
commit | 1683e0289b20b6a0e1b94bae5853859df15c542e (patch) | |
tree | db1521b0d505eb84d6d4f02ac8a7531e94a0f134 /.drone.yml | |
parent | cf8f9c16df7517cc685790cbc1a795475741be91 (diff) | |
download | nextcloud-server-1683e0289b20b6a0e1b94bae5853859df15c542e.tar.gz nextcloud-server-1683e0289b20b6a0e1b94bae5853859df15c542e.zip |
Also execute the new tests on drone
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 8ea80eb76c5..54932162cdb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -756,6 +756,31 @@ trigger: --- kind: pipeline +name: integration-collaboration_features + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: integration-collaboration_features + image: nextcloudci/integration-php7.3:integration-php7.3-2 + commands: + - bash tests/drone-run-integration-tests.sh || exit 0 + - ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int + - cd build/integration + - ./run.sh collaboration_features/ + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push + +--- +kind: pipeline name: integration-federation_features steps: |