mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

[BUGFIX] Fix parallel lint in GitLab CI (#1456)

This commit is contained in:
Łukasz Uznański 2024-09-17 12:23:40 +02:00 committed by GitHub
parent ac8c1248ea
commit 902097b7dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 9 additions and 0 deletions

View file

@ -7,6 +7,7 @@ stages:
- test
include:
- '/.gitlab/pipeline/jobs/.composer-update.yml'
- '/.gitlab/pipeline/jobs/.default.yml'
- '/.gitlab/pipeline/jobs/.default-frontend.yml'
- '/.gitlab/pipeline/jobs/.variables.yml'

View file

@ -0,0 +1,3 @@
.composer-update:
before_script:
- composer update --no-progress

View file

@ -1,4 +1,5 @@
php-lint-php7.4:
extends: .composer-update
image: ghcr.io/sbuerk/demo-core-testing-php74:latest
stage: lint
needs: [ ]

View file

@ -1,4 +1,5 @@
php-lint-php8.0:
extends: .composer-update
image: ghcr.io/sbuerk/demo-core-testing-php80:latest
stage: lint
needs: [ ]

View file

@ -1,4 +1,5 @@
php-lint-php8.1:
extends: .composer-update
image: ghcr.io/sbuerk/demo-core-testing-php81:latest
stage: lint
needs: [ ]

View file

@ -1,4 +1,5 @@
php-lint-php8.2:
extends: .composer-update
image: ghcr.io/sbuerk/demo-core-testing-php82:latest
stage: lint
needs: [ ]

View file

@ -1,4 +1,5 @@
php-lint-php8.3:
extends: .composer-update
image: ghcr.io/sbuerk/demo-core-testing-php83:latest
stage: lint
needs: [ ]