Skip to content

Commit

Permalink
chore(CI): Adjust testing matrix for Nextcloud 31 on stable7.0
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 5810ee9
Show file tree
Hide file tree
Showing 2 changed files with 14 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: ['stable7.0']

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

Expand Down
18 changes: 13 additions & 5 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ 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'
databases: 'sqlite'
server-versions: 'stable31'

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

Expand Down Expand Up @@ -86,9 +90,13 @@ 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'
databases: 'mysql'
server-versions: 'stable31'

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

Expand Down Expand Up @@ -232,4 +240,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 5810ee9

Please sign in to comment.