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

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-09-22 14:03:34 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-22 14:03:34 +0300
commit507a2c420a3f66eb9f3929d2640813be2bd5e66a (patch)
treedb5627443ff1922a37fe432fd335aba7ac76e1ad
parentb038c1f5f70b98ecf077a290f8594509d696643d (diff)
Adjust testing matrix for Nextcloud 25 on masterupdate-master-target-versions
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.drone.yml36
-rw-r--r--.github/workflows/phpunit.yml5
2 files changed, 40 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml
index 41a7a9ff..d20fd5f0 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -35,6 +35,42 @@ type: docker
---
kind: pipeline
+name: integration-tests-stable25
+
+clone:
+ depth: 1
+
+steps:
+ - name: integration-tests-stable25
+ image: ghcr.io/nextcloud/continuous-integration-user_saml_shibboleth-php8.0:latest
+ environment:
+ CORE_BRANCH: stable25
+ commands:
+ - /start.sh
+ - /wait-for-services.sh
+ - rm -rf /var/www/html
+ - cd /var/www/
+ - git clone --depth 1 -b $CORE_BRANCH https://github.com/nextcloud/server html
+ - cd /var/www/html && git submodule update --init
+ # use local clone
+ - cp -r /drone/src /var/www/html/apps/user_saml
+ - php /var/www/html/occ maintenance:install --database sqlite --admin-pass password
+ - php /var/www/html/occ app:enable user_saml
+ - chown -R apache:apache /var/www/html/
+ - cd /var/www/html/apps/user_saml/tests/integration && vendor/bin/behat
+
+trigger:
+ branch:
+ - master
+ - stable*
+ event:
+ - pull_request
+ - push
+
+type: docker
+
+---
+kind: pipeline
name: integration-tests-stable24
clone:
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index 3bb0ffcb..12639284 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -20,12 +20,15 @@ jobs:
matrix:
php-versions: ['7.4', '8.0']
databases: ['sqlite']
- server-versions: ['stable21', 'stable22', 'stable23', 'stable24', 'master']
+ server-versions: ['stable21', 'stable22', 'stable23', 'stable24', 'stable25', 'master']
include:
- php-versions: '8.1'
server-versions: 'master'
databases: 'sqlite'
- php-versions: '8.1'
+ server-versions: 'stable25'
+ databases: 'sqlite'
+ - php-versions: '8.1'
server-versions: 'stable24'
databases: 'sqlite'