Skip to content

Commit

Permalink
Bugfix fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbochmann committed Oct 9, 2024
1 parent 152670b commit 870b78f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
- "8.2"
- "8.3"

steps:
-
Expand Down Expand Up @@ -74,6 +76,8 @@ jobs:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"

steps:
-
Expand Down Expand Up @@ -127,12 +131,21 @@ jobs:
-
typo3-version: "^11.5"
php-version: "8.1"
-
typo3-version: "^11.5"
php-version: "8.2"
-
typo3-version: "^11.5"
php-version: "8.3"
-
typo3-version: "^12.4"
php-version: "8.1"
-
typo3-version: "^12.4"
php-version: "8.2"
-
typo3-version: "^12.4"
php-version: "8.3"

steps:
-
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variables:
PHPUNIT_OPTIONS: -c $PHPUNIT_CONFIG_FILE --coverage-text --colors=never --log-junit=$JUNIT_LOG --coverage-clover=$COVERAGE_LOG --whitelist=$PHP_ANALYSE_PATHS $PHPUNIT_DIRECTORY
ANALYSE_COVERAGE_MIN: '0.5'
ANALYSE_COVERAGE_LAST_THRESHOLD: '5.0'
PHPCOMPATIBILITY_PHP_VERSIONS: '7.4,8.0,8.1,8.2'
PHPCOMPATIBILITY_PHP_VERSIONS: '7.4,8.0,8.1,8.2,8.3'

sonarqube:
allow_failure: true
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@
"@test:phpcompatibility:7.4",
"@test:phpcompatibility:8.0",
"@test:phpcompatibility:8.1",
"@test:phpcompatibility:8.2"
"@test:phpcompatibility:8.2",
"@test:phpcompatibility:8.3"
],
"test:phpcompatibility:7.4": [
".Build/bin/phpcs --ignore=.Build/*,Resources/Public/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.4"
Expand All @@ -129,6 +130,9 @@
"test:phpcompatibility:8.2": [
".Build/bin/phpcs --ignore=.Build/*,Resources/Public/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2"
],
"test:phpcompatibility:8.3": [
".Build/bin/phpcs --ignore=.Build/*,Resources/Public/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.3"
],
"test:phpmd": [
".Build/bin/phpmd ./Classes text phpmd.xml"
],
Expand Down

0 comments on commit 870b78f

Please sign in to comment.