mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2025-03-15 13:43:49 +01:00

Now the GitLab CI jobs have the TYPO3 version first and the PHP version second, just like the GitHub Actions. This hopefully helps avoid confustion like we had in the past, and helps reduce cognitive load when working with the CI jobs. Fixes #1571
14 lines
462 B
YAML
14 lines
462 B
YAML
func-v12-php8.1-highest:
|
|
extends: .default
|
|
image: ghcr.io/typo3/core-testing-php81:latest
|
|
services:
|
|
- mariadb:10
|
|
stage: test
|
|
needs:
|
|
- build-composer-dependencies
|
|
- php-lint-php8.1
|
|
script:
|
|
- echo "Job ${CI_JOB_NAME}"
|
|
- composer require --no-ansi --no-interaction --no-progress --no-install typo3/cms-core:"^12.4"
|
|
- composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
|
- composer ci:tests:functional
|