Skip to content

Commit

Permalink
Merge pull request #725 from nextcloud/update-master-target-versions
Browse files Browse the repository at this point in the history
chore(CI): Adjust testing matrix for Nextcloud 27 on master
  • Loading branch information
blizzz authored May 19, 2023
2 parents 6de4921 + 893b5e0 commit e90b809
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
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-stable27

clone:
depth: 1

steps:
- name: integration-tests-stable27
image: ghcr.io/nextcloud/continuous-integration-user_saml_shibboleth-php8.0:latest
environment:
CORE_BRANCH: stable27
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-stable26
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/phpunit-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,16 @@ jobs:
strategy:
matrix:
php-versions: ['8.0', '8.1']
server-versions: ['stable25', 'stable26', 'master']
server-versions: ['stable25', 'stable26', 'stable27', 'master']
include:
- php-versions: '7.4'
server-versions: 'stable25'
- php-versions: '8.2'
server-versions: 'master'
- php-versions: '8.2'
server-versions: 'stable27'
- php-versions: '8.2'
server-versions: 'stable26'
- php-versions: '7.4'
server-versions: 'stable25'
steps:
- name: Set app env
run: |
Expand Down

0 comments on commit e90b809

Please sign in to comment.