mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2025-03-15 08:43:50 +01:00
[TASK] Make the naming schema of CI jobs consistent (#1581)
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
This commit is contained in:
parent
36d9600fae
commit
c6cb8cc295
13 changed files with 24 additions and 24 deletions
.gitlab/pipeline
.gitlab-ci.yml
jobs
func-v12-php8.1-highest.ymlfunc-v12-php8.1-lowest.ymlfunc-v12-php8.2-highest.ymlfunc-v12-php8.2-lowest.ymlfunc-v12-php8.3-highest.ymlfunc-v12-php8.3-lowest.ymlunit-v12-php8.1-highest.ymlunit-v12-php8.1-lowest.ymlunit-v12-php8.2-highest.ymlunit-v12-php8.2-lowest.ymlunit-v12-php8.3-highest.ymlunit-v12-php8.3-lowest.yml
|
@ -14,12 +14,12 @@ include:
|
|||
- '/.gitlab/pipeline/jobs/build-composer-dependencies.yml'
|
||||
- '/.gitlab/pipeline/jobs/composer-normalize.yml'
|
||||
- '/.gitlab/pipeline/jobs/composer-psr-verify.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.1-v12-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.1-v12-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.2-v12-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.2-v12-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.3-v12-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php8.3-v12-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-v12-php8.1-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-v12-php8.1-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-v12-php8.2-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-v12-php8.2-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-v12-php8.3-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-v12-php8.3-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/javascript-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/json-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/php-cs-fixer.yml'
|
||||
|
@ -29,12 +29,12 @@ include:
|
|||
- '/.gitlab/pipeline/jobs/phpcs.yml'
|
||||
- '/.gitlab/pipeline/jobs/rector.yml'
|
||||
- '/.gitlab/pipeline/jobs/typoscript-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php8.1-v12-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php8.1-v12-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php8.2-v12-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php8.2-v12-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php8.3-v12-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php8.3-v12-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-v12-php8.1-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-v12-php8.1-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-v12-php8.2-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-v12-php8.2-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-v12-php8.3-highest.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-v12-php8.3-lowest.yml'
|
||||
- '/.gitlab/pipeline/jobs/xliff-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/yaml-lint.yml'
|
||||
- template: Security/Secret-Detection.gitlab-ci.yml
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
func-php8.1-v11-highest:
|
||||
func-v12-php8.1-highest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php81:latest
|
||||
services:
|
|
@ -1,4 +1,4 @@
|
|||
func-php8.1-v11-lowest:
|
||||
func-v12-php8.1-lowest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php81:latest
|
||||
services:
|
|
@ -1,4 +1,4 @@
|
|||
func-php8.2-v12-highest:
|
||||
func-v12-php8.2-highest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php82:latest
|
||||
services:
|
|
@ -1,4 +1,4 @@
|
|||
func-php8.2-v12-lowest:
|
||||
func-v12-php8.2-lowest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php82:latest
|
||||
services:
|
|
@ -1,4 +1,4 @@
|
|||
func-php8.3-v11-highest:
|
||||
func-v12-php8.3-highest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php83:latest
|
||||
services:
|
|
@ -1,4 +1,4 @@
|
|||
func-php8.3-v12-lowest:
|
||||
func-v12-php8.3-lowest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php83:latest
|
||||
services:
|
|
@ -1,4 +1,4 @@
|
|||
unit-php8.1-v12-highest:
|
||||
unit-v12-php8.1-highest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php81:latest
|
||||
stage: test
|
|
@ -1,4 +1,4 @@
|
|||
unit-php8.1-v12-lowest:
|
||||
unit-v12-php8.1-lowest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php81:latest
|
||||
stage: test
|
|
@ -1,4 +1,4 @@
|
|||
unit-php8.2-v12-highest:
|
||||
unit-v12-php8.2-highest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php82:latest
|
||||
stage: test
|
|
@ -1,4 +1,4 @@
|
|||
unit-php8.2-v12-lowest:
|
||||
unit-v12-php8.2-lowest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php82:latest
|
||||
stage: test
|
|
@ -1,4 +1,4 @@
|
|||
unit-php8.3-v12-highest:
|
||||
unit-v12-php8.3-highest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php83:latest
|
||||
stage: test
|
|
@ -1,4 +1,4 @@
|
|||
unit-php8.3-v12-lowest:
|
||||
unit-v12-php8.3-lowest:
|
||||
extends: .default
|
||||
image: ghcr.io/typo3/core-testing-php83:latest
|
||||
stage: test
|
Loading…
Add table
Reference in a new issue