Skip to content

Commit

Permalink
chore(CI): Adjust testing matrix for Nextcloud 31 on main
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and hamza221 committed Jan 31, 2025
1 parent 703062f commit bc6c0c7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-audit-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
branches: ['main', 'master', 'stable30', 'stable29', 'stable28']
branches: ['stable31', 'stable30']

name: npm-audit-fix-${{ matrix.branches }}

Expand Down
16 changes: 11 additions & 5 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.1']
php-versions: [ '8.1', '8.2', '8.3' ]
databases: ['sqlite']
server-versions: ['master', 'stable30']
server-versions: ['stable31', 'stable30']
include:
- php-versions: '8.4'
server-versions: 'stable31'

name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

Expand Down Expand Up @@ -86,9 +89,12 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.1', '8.2', '8.3', '8.4']
php-versions: ['8.1', '8.2', '8.3']
databases: ['mysql']
server-versions: ['master', 'stable30']
server-versions: ['stable31', 'stable30']
include:
- php-versions: '8.4'
server-versions: 'stable31'

name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

Expand Down Expand Up @@ -232,4 +238,4 @@ jobs:
- name : Mysql test status
run: if ${{ needs.mysql.result != 'success' && needs.mysql.result != 'skipped' }}; then exit 1; fi
- name : Pgsql test status
run: if ${{ needs.pgsql.result != 'success' && needs.pgsql.result != 'skipped' }}; then exit 1; fi
run: if ${{ needs.pgsql.result != 'success' && needs.pgsql.result != 'skipped' }}; then exit 1; fi

0 comments on commit bc6c0c7

Please sign in to comment.