Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2020-12-03 16:19:43 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2020-12-07 06:47:56 +0300
commit2cc22a06b4d56e1d46d1de45993b3149455c3bb4 (patch)
tree5a9b33f4a204299a39e5c57999dc636210c12fb8 /.drone.yml
parent184742e6ff1fe27ebc663dd1adff9ae87408d87d (diff)
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.yml25
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: