mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 09:16:13 +01:00
afd6a00b1a
Some GitLab jobs seem to run commands that do not belong in the the corresponding job. This change outputs the job name in CI in order to help us track this down. Related: #976
11 lines
272 B
YAML
11 lines
272 B
YAML
unit-php8.1-v12-highest:
|
|
extends: .default
|
|
image: php:8.1
|
|
stage: test
|
|
needs:
|
|
- build-composer-dependencies
|
|
- php-lint-php8.1
|
|
script:
|
|
- echo "Job ${CI_JOB_NAME}"
|
|
- composer require --no-progress typo3/cms-core:"^12.4"
|
|
- composer ci:tests:unit
|