Skip to content

Commit 3cd974c

Browse files
author
Mathis Koblin
committed
Updated CI to v13
1 parent 62cf77f commit 3cd974c

File tree

5 files changed

+11
-20
lines changed

5 files changed

+11
-20
lines changed

.github/workflows/analyze.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
name: '✔ with SonarCloud'
1717

1818
env:
19-
php: '8.2'
20-
typo3: '^12.4'
19+
php: '8.3'
20+
typo3: '^13.4'
2121
sonar_token: ${{ secrets.SONAR_TOKEN }}
2222

2323
if: github.repository == 'IchHabRecht/social_gdpr'

.github/workflows/dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ 'ubuntu-latest' ]
18-
typo3: [ '10.4.x-dev', '11.5.x-dev', '12.4.x-dev' ]
19-
php: [ '7.4', '8.0', '8.1' ]
18+
typo3: [ '13.4.x-dev' ]
19+
php: [ '8.2', '8.3', '8.4' ]
2020
dependency-version: [ 'lowest', 'stable' ]
2121
exclude:
2222
- typo3: '10.4.x-dev'
@@ -96,7 +96,7 @@ jobs:
9696
typo3DatabasePassword: 'root'
9797
typo3DatabaseUsername: 'root'
9898
run: |
99-
sudo /etc/init.d/mysql start
99+
sudo /etc/init.d/mysql start
100100
mkdir -p .Build/public/typo3conf/ext/
101101
if [ ! -L .Build/public/typo3conf/ext/social_gdpr ]; then ln -snvf ../../../../. .Build/public/typo3conf/ext/social_gdpr; fi
102102
find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo "Running functional test suite {}"; .Build/bin/phpunit --bootstrap .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php {}'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
name: '🚢 to TER'
1414

1515
env:
16-
php: '8.2'
17-
typo3: '^12.4'
16+
php: '8.3'
17+
typo3: '^13.4'
1818
typo3_org_username: ${{ secrets.TYPO3_ORG_USERNAME }}
1919
typo3_org_password: ${{ secrets.TYPO3_ORG_PASSWORD }}
2020

.github/workflows/test.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ 'ubuntu-latest' ]
16-
typo3: [ '^10.4', '^11.5', '^12.4' ]
17-
php: [ '7.4', '8.0', '8.1' ]
18-
exclude:
19-
- typo3: '^10.4'
20-
php: '8.0'
21-
- typo3: '^10.4'
22-
php: '8.1'
23-
- typo3: '^12.4'
24-
php: '7.4'
25-
- typo3: '^12.4'
26-
php: '8.0'
16+
typo3: [ '^13.4' ]
17+
php: [ '8.2', '8.3', '8.4' ]
2718

2819
runs-on: ${{ matrix.os }}
2920

@@ -90,7 +81,7 @@ jobs:
9081
typo3DatabasePassword: 'root'
9182
typo3DatabaseUsername: 'root'
9283
run: |
93-
sudo /etc/init.d/mysql start
84+
sudo /etc/init.d/mysql start
9485
mkdir -p .Build/public/typo3conf/ext/
9586
if [ ! -L .Build/public/typo3conf/ext/social_gdpr ]; then ln -snvf ../../../../. .Build/public/typo3conf/ext/social_gdpr; fi
9687
find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo "Running functional test suite {}"; HASH=${{ steps.version-cache.outputs.version }}_$( echo {} | md5sum | cut -d " " -f 1); .Build/bin/phpunit --bootstrap .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php --log-junit .Log/junit/functional_$HASH.xml --coverage-php .Log/coverage/functional_$HASH.cov {}'

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^7.4 || ^8.0",
15+
"php": "^8.2",
1616
"typo3/cms-core": "^13.4"
1717
},
1818
"require-dev": {

0 commit comments

Comments
 (0)