summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2023-03-06 14:42:16 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2023-03-06 17:07:19 +0100
commitd11f0cafab52b8e83d51007de5eca562de0f1f95 (patch)
tree63c5775a359523fbc04649a3760a9033cef8325a
parent5dbe8688bba13e020ed33bc587b8fe3327f8197e (diff)
use stable26
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
-rw-r--r--.github/workflows/api-integration-tests.yml16
-rw-r--r--.github/workflows/api-php-static-code-check.yml10
-rw-r--r--.github/workflows/api-php-tests.yml4
-rw-r--r--.github/workflows/build-release.yml2
-rw-r--r--.github/workflows/post-merge-tasks.yml2
5 files changed, 21 insertions, 13 deletions
diff --git a/.github/workflows/api-integration-tests.yml b/.github/workflows/api-integration-tests.yml
index bfbb320aa..913fd0b6d 100644
--- a/.github/workflows/api-integration-tests.yml
+++ b/.github/workflows/api-integration-tests.yml
@@ -28,21 +28,25 @@ jobs:
- 5432:5432 # Maps tcp port 5432 on service container to the host
strategy:
matrix:
- php-versions: ['7.4', '8.0']
- nextcloud: ['stable24', 'stable25']
+ php-versions: ['8.0', '8.1']
+ nextcloud: ['stable24', 'stable25', 'stable26']
database: ['sqlite', 'pgsql', 'mysql']
experimental: [false]
include:
- - php-versions: '8.0'
+ - php-versions: 8.1
nextcloud: pre-release
database: sqlite
experimental: true
- - php-versions: '8.2'
+ - php-versions: 8.2
nextcloud: pre-release
database: sqlite
experimental: true
- - php-versions: 8.1
- nextcloud: stable25
+ - php-versions: 7.4
+ nextcloud: stable24
+ database: sqlite
+ experimental: false
+ - php-versions: 8.2
+ nextcloud: stable26
database: sqlite
experimental: false
steps:
diff --git a/.github/workflows/api-php-static-code-check.yml b/.github/workflows/api-php-static-code-check.yml
index 57776f400..33261942a 100644
--- a/.github/workflows/api-php-static-code-check.yml
+++ b/.github/workflows/api-php-static-code-check.yml
@@ -7,14 +7,18 @@ jobs:
continue-on-error: true
strategy:
matrix:
- php-versions: [ '7.4', '8.0', '8.1' ]
- nextcloud: [ 'stable25' ]
+ php-versions: ['8.0', '8.1', '8.2' ]
+ nextcloud: [ 'stable26' ]
database: [ 'sqlite' ]
include:
- - php-versions: '8.2'
+ - php-versions: 8.2
nextcloud: pre-release
database: sqlite
experimental: true
+ - php-versions: 7.4
+ nextcloud: stable24
+ database: sqlite
+ experimental: false
name: "phpstan: Nextcloud ${{ matrix.nextcloud }} with ${{ matrix.php-versions }}"
steps:
- name: Checkout
diff --git a/.github/workflows/api-php-tests.yml b/.github/workflows/api-php-tests.yml
index 0a2635316..f5f75a095 100644
--- a/.github/workflows/api-php-tests.yml
+++ b/.github/workflows/api-php-tests.yml
@@ -10,13 +10,13 @@ jobs:
strategy:
matrix:
php-versions: ['8.1']
- nextcloud: ['stable25']
+ nextcloud: ['stable26']
database: ['sqlite']
experimental: [false]
codecoverage: [false]
include:
- php-versions: 8.0
- nextcloud: stable24
+ nextcloud: stable25
database: sqlite
experimental: false
codecoverage: true
diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml
index 00690ef1e..656a371fa 100644
--- a/.github/workflows/build-release.yml
+++ b/.github/workflows/build-release.yml
@@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
php-versions: ['8.1']
- nextcloud: ['stable25']
+ nextcloud: ['stable26']
database: ['sqlite']
steps:
- name: Checkout
diff --git a/.github/workflows/post-merge-tasks.yml b/.github/workflows/post-merge-tasks.yml
index 6385657d3..cb25e7cd7 100644
--- a/.github/workflows/post-merge-tasks.yml
+++ b/.github/workflows/post-merge-tasks.yml
@@ -10,7 +10,7 @@ jobs:
name: "Coverage: Nextcloud PHP ${{ matrix.php-versions }}"
strategy:
matrix:
- nextcloud: ['stable25']
+ nextcloud: ['stable26']
steps:
- name: Checkout
uses: actions/checkout@v3