mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
Add functional tests for v11 for gitlab (#604)
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
parent
1b0b936cf6
commit
000fd583a8
4 changed files with 39 additions and 0 deletions
|
@ -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'
|
||||
|
|
12
.gitlab/pipeline/jobs/func-php7.4-v11.yml
Normal file
12
.gitlab/pipeline/jobs/func-php7.4-v11.yml
Normal 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
|
12
.gitlab/pipeline/jobs/func-php8.0-v11.yml
Normal file
12
.gitlab/pipeline/jobs/func-php8.0-v11.yml
Normal 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
|
12
.gitlab/pipeline/jobs/func-php8.1-v11.yml
Normal file
12
.gitlab/pipeline/jobs/func-php8.1-v11.yml
Normal 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
|
Loading…
Reference in a new issue