Update master target versions

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-04-14 22:35:13 +02:00 committed by Arthur Schiwon
parent 9cb5d0686c
commit 73a3a49cee
No known key found for this signature in database
GPG key ID: 7424F1874854DF23
2 changed files with 39 additions and 1 deletions

View file

@ -33,6 +33,41 @@ trigger:
type: docker
---
kind: pipeline
name: integration-tests-stable24
clone:
depth: 1
steps:
- name: integration-tests-stable24
image: ghcr.io/nextcloud/continuous-integration-user_saml_shibboleth-php7.3:latest
environment:
CORE_BRANCH: stable24
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
- scl enable rh-php73 "bash -c '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/
- scl enable rh-php73 "bash -c '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-stable23

View file

@ -20,11 +20,14 @@ jobs:
matrix:
php-versions: ['7.4', '8.0']
databases: ['sqlite']
server-versions: ['stable21', 'stable22', 'stable23', 'master']
server-versions: ['stable21', 'stable22', 'stable23', 'stable24', 'master']
include:
- php-versions: '8.1'
server-versions: 'master'
databases: 'sqlite'
- php-versions: '8.1'
server-versions: 'stable24'
databases: 'sqlite'
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}