diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-12-03 14:19:43 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-12-07 04:47:56 +0100 |
commit | 2cc22a06b4d56e1d46d1de45993b3149455c3bb4 (patch) | |
tree | 5a9b33f4a204299a39e5c57999dc636210c12fb8 /.drone.yml | |
parent | 184742e6ff1fe27ebc663dd1adff9ae87408d87d (diff) | |
download | nextcloud-server-2cc22a06b4d56e1d46d1de45993b3149455c3bb4.tar.gz nextcloud-server-2cc22a06b4d56e1d46d1de45993b3149455c3bb4.zip |
Add integration tests for user avatars
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.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 aa718998203..e9cacb376fc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -859,6 +859,31 @@ trigger: --- kind: pipeline +name: integration-avatar + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: integration-auth + 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/avatar.feature + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push + +--- +kind: pipeline name: integration-maintenance-mode steps: |