Skip to content

Commit cbeede3

Browse files
authored
Merge pull request #32 from ayacoo/4.0
4.0
2 parents 76da8cf + 80a50d5 commit cbeede3

10 files changed

Lines changed: 570 additions & 386 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
push:
77
branches:
88
- main
9-
- quality
9+
- 4.0
1010
pull_request:
1111
permissions:
1212
contents: read
@@ -32,7 +32,6 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
php-version:
35-
- "8.1"
3635
- "8.2"
3736
- "8.3"
3837
code-quality:
@@ -70,6 +69,7 @@ jobs:
7069
- "ts:lint"
7170
- "xliff:lint"
7271
php-version:
72+
- "8.2"
7373
- "8.3"
7474
unit-tests:
7575
name: "Unit tests"
@@ -111,13 +111,10 @@ jobs:
111111
fail-fast: false
112112
matrix:
113113
include:
114-
- typo3-version: "^12.4"
115-
php-version: "8.1"
116-
composer-dependencies: highest
117-
- typo3-version: "^12.4"
114+
- typo3-version: "^13.4"
118115
php-version: "8.2"
119116
composer-dependencies: highest
120-
- typo3-version: "^12.4"
117+
- typo3-version: "^13.4"
121118
php-version: "8.3"
122119
composer-dependencies: highest
123120
functional-tests:
@@ -129,29 +126,29 @@ jobs:
129126
# rest matrix jobs be executed anyway.
130127
fail-fast: false
131128
matrix:
132-
php: [ '8.1', '8.2', '8.3' ]
129+
php: [ '8.2', '8.3' ]
133130
composerInstall: [ 'composerInstallHighest' ]
134131
steps:
135132
- name: Checkout
136133
uses: actions/checkout@v4
137134

138135
- name: Install testing system
139-
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -s ${{ matrix.composerInstall }}
136+
run: Build/Scripts/runTests.sh -t 13 -p ${{ matrix.php }} -s ${{ matrix.composerInstall }}
140137

141138
- name: Functional Tests with mariadb (min)
142-
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -d mariadb -i 10.3 -s functional
139+
run: Build/Scripts/runTests.sh -t 13 -p ${{ matrix.php }} -d mariadb -i 10.4 -s functional
143140

144141
- name: Functional Tests with mariadb (max)
145-
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -d mariadb -i 10.11 -s functional
142+
run: Build/Scripts/runTests.sh -t 13 -p ${{ matrix.php }} -d mariadb -i 10.11 -s functional
146143

147144
- name: Functional Tests with mysql (min/max)
148-
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -d mysql -j 8.0 -s functional
145+
run: Build/Scripts/runTests.sh -t 13 -p ${{ matrix.php }} -d mysql -i 8.0 -s functional
149146

150147
- name: Functional Tests with postgres (min)
151-
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -d postgres -k 10 -s functional
148+
run: Build/Scripts/runTests.sh -t 13 -p ${{ matrix.php }} -d postgres -i 10 -s functional
152149

153150
- name: Functional Tests with postgres (max)
154-
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -d postgres -k 16 -s functional
151+
run: Build/Scripts/runTests.sh -t 13 -p ${{ matrix.php }} -d postgres -i 16 -s functional
155152

156153
- name: Functional Tests with sqlite
157-
run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -d sqlite -s functional
154+
run: Build/Scripts/runTests.sh -t 13 -p ${{ matrix.php }} -d sqlite -s functional

0 commit comments

Comments
 (0)