mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2025-03-31 04:03:49 +02:00

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
|