mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 08:36:12 +01:00
e8da69e4fa
The `typo3/minimal` package is not maintained very much, and currently cannot be used as a requirement to install the latest TYPO3 development version (as it still depends on `dev-master`, not on `dev-main`). In addition, not depending on it will allow us to find any missing dependencies in our requirements that so far have been masked by the `typo3/minimal` dependencies. (This is the same as #520, but for GitLab CI.)
12 lines
310 B
YAML
12 lines
310 B
YAML
func-php7.4-v10:
|
|
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:"^10.4"
|
|
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
|