mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:36:12 +01:00
[TASK] Add php8.3 unit tests to gitlab ci (#1033)
Depends on: #1032 Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
parent
5998d5699b
commit
9ffbf82d3e
5 changed files with 51 additions and 0 deletions
|
@ -42,10 +42,14 @@ include:
|
||||||
- '/.gitlab/pipeline/jobs/unit-php8.1-v11-lowest.yml'
|
- '/.gitlab/pipeline/jobs/unit-php8.1-v11-lowest.yml'
|
||||||
- '/.gitlab/pipeline/jobs/unit-php8.2-v11-highest.yml'
|
- '/.gitlab/pipeline/jobs/unit-php8.2-v11-highest.yml'
|
||||||
- '/.gitlab/pipeline/jobs/unit-php8.2-v11-lowest.yml'
|
- '/.gitlab/pipeline/jobs/unit-php8.2-v11-lowest.yml'
|
||||||
|
- '/.gitlab/pipeline/jobs/unit-php8.3-v11-highest.yml'
|
||||||
|
- '/.gitlab/pipeline/jobs/unit-php8.3-v11-lowest.yml'
|
||||||
- '/.gitlab/pipeline/jobs/unit-php8.1-v12-highest.yml'
|
- '/.gitlab/pipeline/jobs/unit-php8.1-v12-highest.yml'
|
||||||
- '/.gitlab/pipeline/jobs/unit-php8.1-v12-lowest.yml'
|
- '/.gitlab/pipeline/jobs/unit-php8.1-v12-lowest.yml'
|
||||||
- '/.gitlab/pipeline/jobs/unit-php8.2-v12-highest.yml'
|
- '/.gitlab/pipeline/jobs/unit-php8.2-v12-highest.yml'
|
||||||
- '/.gitlab/pipeline/jobs/unit-php8.2-v12-lowest.yml'
|
- '/.gitlab/pipeline/jobs/unit-php8.2-v12-lowest.yml'
|
||||||
|
- '/.gitlab/pipeline/jobs/unit-php8.3-v12-highest.yml'
|
||||||
|
- '/.gitlab/pipeline/jobs/unit-php8.3-v12-lowest.yml'
|
||||||
- '/.gitlab/pipeline/jobs/xliff-lint.yml'
|
- '/.gitlab/pipeline/jobs/xliff-lint.yml'
|
||||||
- '/.gitlab/pipeline/jobs/yaml-lint.yml'
|
- '/.gitlab/pipeline/jobs/yaml-lint.yml'
|
||||||
- template: Security/Secret-Detection.gitlab-ci.yml
|
- template: Security/Secret-Detection.gitlab-ci.yml
|
||||||
|
|
12
.gitlab/pipeline/jobs/unit-php8.3-v11-highest.yml
Normal file
12
.gitlab/pipeline/jobs/unit-php8.3-v11-highest.yml
Normal file
|
@ -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
|
12
.gitlab/pipeline/jobs/unit-php8.3-v11-lowest.yml
Normal file
12
.gitlab/pipeline/jobs/unit-php8.3-v11-lowest.yml
Normal file
|
@ -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
|
11
.gitlab/pipeline/jobs/unit-php8.3-v12-highest.yml
Normal file
11
.gitlab/pipeline/jobs/unit-php8.3-v12-highest.yml
Normal file
|
@ -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
|
12
.gitlab/pipeline/jobs/unit-php8.3-v12-lowest.yml
Normal file
12
.gitlab/pipeline/jobs/unit-php8.3-v12-lowest.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue