Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Test stable4.2 against server stable31, not master #10709

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/psalm-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
ocp-version: [ 'dev-master' ]
ocp-version: [ 'dev-stable30', 'dev-stable31' ]

name: static-psalm-analysis ${{ matrix.ocp-version }}
steps:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
nextcloud-versions: ['master', 'stable30']
nextcloud-versions: ['stable31', 'stable30']
include:
- php-versions: '8.4'
nextcloud-versions: 'master'
nextcloud-versions: 'stable31'
name: Nextcloud ${{ matrix.nextcloud-versions }} php${{ matrix.php-versions }} unit tests
steps:
- name: Set up Nextcloud env
Expand Down Expand Up @@ -63,20 +63,20 @@ jobs:
strategy:
matrix:
php-versions: ['8.3']
nextcloud-versions: ['master']
nextcloud-versions: ['stable31']
db: ['sqlite', 'mysql', 'pgsql']
cache: ['nocache']
include:
- php-versions: 8.1
nextcloud-versions: master
nextcloud-versions: 'stable31'
db: 'sqlite'
cache: 'redis'
- php-versions: 8.2
nextcloud-versions: master
nextcloud-versions: 'stable31'
db: 'mysql'
cache: 'redis'
- php-versions: 8.2
nextcloud-versions: stable30
nextcloud-versions: 'stable31'
db: 'mysql'
cache: 'redis'
name: ${{ matrix.nextcloud-versions }} w/ php${{ matrix.php-versions }}-${{ matrix.db }}-${{ matrix.cache }} integration tests
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
if: ${{ matrix.php-versions == '8.3' }}
run: sed -i 's/max-version="8.3"/max-version="8.4"/' nextcloud/apps/mail/appinfo/info.xml
- name: Install Mail
run: php -f nextcloud/occ app:enable -f mail
run: php -f nextcloud/occ app:enable mail
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚩this is why CI has passed before

- name: Configure Nextcloud for testing
run: |
php -f nextcloud/occ config:system:set debug --type bool --value true
Expand Down
Loading