mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
[BUGFIX] Fix parallel lint in GitLab CI (#1456)
This commit is contained in:
parent
ac8c1248ea
commit
902097b7dd
7 changed files with 9 additions and 0 deletions
|
@ -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'
|
||||
|
|
3
.gitlab/pipeline/jobs/.composer-update.yml
Normal file
3
.gitlab/pipeline/jobs/.composer-update.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
.composer-update:
|
||||
before_script:
|
||||
- composer update --no-progress
|
|
@ -1,4 +1,5 @@
|
|||
php-lint-php7.4:
|
||||
extends: .composer-update
|
||||
image: ghcr.io/sbuerk/demo-core-testing-php74:latest
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
php-lint-php8.0:
|
||||
extends: .composer-update
|
||||
image: ghcr.io/sbuerk/demo-core-testing-php80:latest
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
php-lint-php8.1:
|
||||
extends: .composer-update
|
||||
image: ghcr.io/sbuerk/demo-core-testing-php81:latest
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
php-lint-php8.2:
|
||||
extends: .composer-update
|
||||
image: ghcr.io/sbuerk/demo-core-testing-php82:latest
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
php-lint-php8.3:
|
||||
extends: .composer-update
|
||||
image: ghcr.io/sbuerk/demo-core-testing-php83:latest
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
|
|
Loading…
Reference in a new issue