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

Add functional tests for v11 for gitlab (#604)

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

View file

@ -12,6 +12,9 @@ include:
- '/.gitlab/pipeline/jobs/.variables.yml'
- '/.gitlab/pipeline/jobs/build-composer-dependencies.yml'
- '/.gitlab/pipeline/jobs/composer-normalize.yml'
- '/.gitlab/pipeline/jobs/func-php7.4-v11.yml'
- '/.gitlab/pipeline/jobs/func-php8.0-v11.yml'
- '/.gitlab/pipeline/jobs/func-php8.1-v11.yml'
- '/.gitlab/pipeline/jobs/javascript-lint.yml'
- '/.gitlab/pipeline/jobs/json-lint.yml'
- '/.gitlab/pipeline/jobs/php-copypaste-check.yml'

View file

@ -0,0 +1,12 @@
func-php7.4-v11:
extends: .default
image: php:7.4
services:
- mariadb:10
stage: test
needs:
- build-composer-dependencies
- php-lint-php7.4
script:
- composer require --no-progress typo3/cms-core:"^11.5"
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional

View file

@ -0,0 +1,12 @@
func-php8.0-v11:
extends: .default
image: php:8.0
services:
- mariadb:10
stage: test
needs:
- build-composer-dependencies
- php-lint-php8.0
script:
- composer require --no-progress typo3/cms-core:"^11.5"
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional

View file

@ -0,0 +1,12 @@
func-php8.1-v11:
extends: .default
image: php:8.1
services:
- mariadb:10
stage: test
needs:
- build-composer-dependencies
- php-lint-php8.0
script:
- composer require --no-progress typo3/cms-core:"^11.5"
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional