mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[FEATURE] Add unit tests for v11 to gitlab ci (#607)

Fixes #590
Fixes #605

Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
Łukasz Uznański 2022-10-05 15:52:28 +02:00 committed by GitHub
parent 813c162421
commit aaa4158b09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 33 additions and 0 deletions

View file

@ -23,6 +23,9 @@ include:
- '/.gitlab/pipeline/jobs/php-lint-php8.1.yml'
- '/.gitlab/pipeline/jobs/phpcs.yml'
- '/.gitlab/pipeline/jobs/ts-lint.yml'
- '/.gitlab/pipeline/jobs/unit-php7.4-v11.yml'
- '/.gitlab/pipeline/jobs/unit-php8.0-v11.yml'
- '/.gitlab/pipeline/jobs/unit-php8.1-v11.yml'
- '/.gitlab/pipeline/jobs/xliff-lint.yml'
- '/.gitlab/pipeline/jobs/yaml-lint.yml'
- template: Security/License-Scanning.gitlab-ci.yml

View file

@ -0,0 +1,10 @@
unit-php7.4-v11:
extends: .default
image: php:7.4
stage: test
needs:
- build-composer-dependencies
- php-lint-php7.4
script:
- composer require --no-progress typo3/cms-core:"^11.5"
- composer ci:tests:unit

View file

@ -0,0 +1,10 @@
unit-php8.0-v11:
extends: .default
image: php:8.0
stage: test
needs:
- build-composer-dependencies
- php-lint-php8.0
script:
- composer require --no-progress typo3/cms-core:"^11.5"
- composer ci:tests:unit

View file

@ -0,0 +1,10 @@
unit-php8.1-v11:
extends: .default
image: php:8.1
stage: test
needs:
- build-composer-dependencies
- php-lint-php8.1
script:
- composer require --no-progress typo3/cms-core:"^11.5"
- composer ci:tests:unit