mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
[FEATURE] Run the functional tests on TYPO3 12 as well (#615)
Fixes #519 Closes #528 Co-authored-by: lina.wolf <lwolf@w-commerce.de>
This commit is contained in:
parent
88785e32e0
commit
1d9c79a439
6 changed files with 41 additions and 1 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -244,3 +244,9 @@ jobs:
|
|||
- typo3-version: "^11.5"
|
||||
php-version: "8.1"
|
||||
composer-dependencies: highest
|
||||
- typo3-version: "^12.0"
|
||||
php-version: "8.1"
|
||||
composer-dependencies: lowest
|
||||
- typo3-version: "^12.0"
|
||||
php-version: "8.1"
|
||||
composer-dependencies: highest
|
||||
|
|
6
.github/workflows/predefined.yml
vendored
6
.github/workflows/predefined.yml
vendored
|
@ -291,3 +291,9 @@ jobs:
|
|||
- typo3-version: "^11.5"
|
||||
php-version: "8.1"
|
||||
composer-dependencies: highest
|
||||
- typo3-version: "^12.0"
|
||||
php-version: "8.1"
|
||||
composer-dependencies: lowest
|
||||
- typo3-version: "^12.0"
|
||||
php-version: "8.1"
|
||||
composer-dependencies: highest
|
||||
|
|
|
@ -18,6 +18,8 @@ include:
|
|||
- '/.gitlab/pipeline/jobs/func-php8.0-v11-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.1-v11-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.1-v11-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.1-v12-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.1-v12-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/javascript-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/json-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/php-copypaste-check.yml'
|
||||
|
|
13
.gitlab/pipeline/jobs/func-php8.1-v12-highest.yml
Normal file
13
.gitlab/pipeline/jobs/func-php8.1-v12-highest.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
func-php8.1-v11-highest:
|
||||
extends: .default
|
||||
image: php:8.1
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php8.1
|
||||
script:
|
||||
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^12.0"
|
||||
- composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
||||
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
|
13
.gitlab/pipeline/jobs/func-php8.1-v12-lowest.yml
Normal file
13
.gitlab/pipeline/jobs/func-php8.1-v12-lowest.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
func-php8.1-v11-lowest:
|
||||
extends: .default
|
||||
image: php:8.1
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php8.1
|
||||
script:
|
||||
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^12.0"
|
||||
- composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
||||
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
|
|
@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
|
||||
### Added
|
||||
- Harden the GitHub Actions workflows (#649)
|
||||
- Add support for TYPO3 12 (#652, #653)
|
||||
- Add support for TYPO3 12 (#615, #652, #653)
|
||||
- Add `.gitignore` entry for JetBrains Fleet editor (#642)
|
||||
|
||||
### Changed
|
||||
|
|
Loading…
Reference in a new issue