diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2021-07-27 14:05:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 14:05:16 +0200 |
commit | 0aed3ecd7669d7f1a20117eef2e6a743b640cdb4 (patch) | |
tree | a145224f0bdbf97568c894284460839d30e0d4bb /.drone.yml | |
parent | 606b5fe1545ef59e3812e1ac0820a1a5683ad785 (diff) | |
parent | 43a98794676e4fcb77aebd1447a2ab8af759417f (diff) | |
download | nextcloud-server-0aed3ecd7669d7f1a20117eef2e6a743b640cdb4.tar.gz nextcloud-server-0aed3ecd7669d7f1a20117eef2e6a743b640cdb4.zip |
Merge pull request #26724 from nextcloud/backport/25417/stable21
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 caec2fccd34..b9f2ac441ac 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1166,6 +1166,31 @@ trigger: --- kind: pipeline +name: integration-contacts-menu + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: integration-contacts-menu + 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 features/contacts-menu.feature + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push + +--- +kind: pipeline name: integration-favorites steps: |