-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Add php8.3 unit tests to gitlab ci
Depends on: #1032
- Loading branch information
1 parent
476884b
commit e9e3f23
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
unit-php8.3-v11-highest: | ||
extends: .default | ||
image: php:8.3 | ||
stage: test | ||
needs: | ||
- build-composer-dependencies | ||
- php-lint-php8.3 | ||
script: | ||
- echo "Job ${CI_JOB_NAME}" | ||
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^11.5" | ||
- composer update --no-ansi --no-interaction --no-progress --with-dependencies | ||
- composer ci:tests:unit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
unit-php8.3-v11-lowest: | ||
extends: .default | ||
image: php:8.3 | ||
stage: test | ||
needs: | ||
- build-composer-dependencies | ||
- php-lint-php8.3 | ||
script: | ||
- echo "Job ${CI_JOB_NAME}" | ||
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^11.5" | ||
- composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest | ||
- composer ci:tests:unit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
unit-php8.3-v12-highest: | ||
extends: .default | ||
image: php:8.3 | ||
stage: test | ||
needs: | ||
- build-composer-dependencies | ||
- php-lint-php8.3 | ||
script: | ||
- echo "Job ${CI_JOB_NAME}" | ||
- composer require --no-progress typo3/cms-core:"^12.4" | ||
- composer ci:tests:unit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
unit-php8.3-v12-lowest: | ||
extends: .default | ||
image: php:8.3 | ||
stage: test | ||
needs: | ||
- build-composer-dependencies | ||
- php-lint-php8.3 | ||
script: | ||
- echo "Job ${CI_JOB_NAME}" | ||
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^12.4" | ||
- composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest | ||
- composer ci:tests:unit |