Skip to content

Commit

Permalink
Merge pull request #657 from nextcloud/update-master-target-versions
Browse files Browse the repository at this point in the history
Adjust testing matrix for Nextcloud 26 on master
  • Loading branch information
blizzz authored Oct 10, 2022
2 parents 180c71f + 507a2c4 commit fc9f326
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,42 @@ trigger:

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
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ 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'
Expand Down

0 comments on commit fc9f326

Please sign in to comment.