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

github.com/nextcloud/spreed.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>2019-08-29 13:28:01 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-29 13:28:01 +0300
commitc180a412a8ade1ae4d7d2b5bc7257f362b8f01ec (patch)
treeebbdb28f9965665ea1a0a8e85469f29278f97651 /.drone.yml
parent42f256b85c3d59999bcf8dc434932938b5b330c5 (diff)
Add acceptance tests for lobby to Drone
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index 14aa0fb29..2b2237eaa 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -1129,6 +1129,46 @@ trigger:
---
kind: pipeline
+name: acc-sqlite-lobby
+
+steps:
+ - name: acceptance-lobby
+ image: nextcloudci/acceptance-php7.1:acceptance-php7.1-2
+ environment:
+ APP_NAME: spreed
+ CORE_BRANCH: master
+ SELENIUM_HOST: selenium
+ TESTS_ACCEPTANCE: lobby
+ commands:
+ - bash tests/drone-run-acceptance-tests.sh || exit 0
+ # Pre-setup steps
+ - git clone --depth 1 -b $CORE_BRANCH https://github.com/nextcloud/server ../server
+ - cp -R . ../server/apps/$APP_NAME
+ - cd ../server
+ - git submodule update --init
+ - ln --symbolic `pwd` /var/www/html
+
+ # Run acceptance tests
+ - tests/acceptance/run-local.sh --acceptance-tests-dir apps/spreed/tests/acceptance --timeout-multiplier 10 --nextcloud-server-domain acceptance-$TESTS_ACCEPTANCE --selenium-server $SELENIUM_HOST:4444 allow-git-repository-modifications features/$TESTS_ACCEPTANCE.feature
+
+services:
+ - name: selenium
+ image: selenium/standalone-firefox:2.53.1-beryllium
+ environment:
+ # Reduce default log level for Selenium server (INFO) as it is too
+ # verbose.
+ JAVA_OPTS: -Dselenium.LOGGER.level=WARNING
+
+trigger:
+ branch:
+ - master
+ - stable*
+ event:
+ - pull_request
+ - push
+
+---
+kind: pipeline
name: acc-sqlite-public-share-auth
steps: