mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 17:36:12 +01:00
[CLEANUP] Split GitLab jobs (#273)
This commit is contained in:
parent
20112ac115
commit
04d8ffed31
29 changed files with 303 additions and 304 deletions
|
@ -7,310 +7,33 @@ stages:
|
|||
- test
|
||||
|
||||
include:
|
||||
- '/.gitlab/pipeline/jobs/.default.yml'
|
||||
- '/.gitlab/pipeline/jobs/.default-frontend.yml'
|
||||
- '/.gitlab/pipeline/jobs/.variables.yml'
|
||||
- '/.gitlab/pipeline/jobs/build-composer-dependencies.yml'
|
||||
- '/.gitlab/pipeline/jobs/composer-normalize.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php7.2-v9.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php7.2-v10.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php7.3-v9.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php7.3-v10.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php7.4-v9.yml'
|
||||
- '/.gitlab/pipeline/jobs/func-php7.4-v10.yml'
|
||||
- '/.gitlab/pipeline/jobs/javascript-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/json-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/php-copypaste-check.yml'
|
||||
- '/.gitlab/pipeline/jobs/php-lint-php7.2.yml'
|
||||
- '/.gitlab/pipeline/jobs/php-lint-php7.3.yml'
|
||||
- '/.gitlab/pipeline/jobs/php-lint-php7.4.yml'
|
||||
- '/.gitlab/pipeline/jobs/phpcs.yml'
|
||||
- '/.gitlab/pipeline/jobs/ts-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php7.2-v9.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php7.2-v10.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php7.3-v9.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php7.3-v10.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php7.4-v9.yml'
|
||||
- '/.gitlab/pipeline/jobs/unit-php7.4-v10.yml'
|
||||
- '/.gitlab/pipeline/jobs/xliff-lint.yml'
|
||||
- '/.gitlab/pipeline/jobs/yaml-lint.yml'
|
||||
- template: Security/License-Scanning.gitlab-ci.yml
|
||||
- template: Security/Secret-Detection.gitlab-ci.yml
|
||||
- template: Security/SAST.gitlab-ci.yml
|
||||
|
||||
variables:
|
||||
MYSQL_ROOT_PASSWORD: root
|
||||
typo3DatabaseName: typo3
|
||||
typo3DatabaseHost: mariadb
|
||||
typo3DatabaseUsername: root
|
||||
typo3DatabasePassword: root
|
||||
|
||||
.default:
|
||||
image: php:7.4
|
||||
before_script:
|
||||
- bash .gitlab/build/docker_install.sh > /dev/null
|
||||
|
||||
.default-frontend:
|
||||
image: node:latest
|
||||
needs: [ ]
|
||||
cache:
|
||||
key: "$CI_PROJECT_ID"
|
||||
paths:
|
||||
- Resources/Private/node_modules/
|
||||
- Resources/Private/.yarn
|
||||
before_script:
|
||||
- npm install -g eslint
|
||||
- cd ./Resources/Private
|
||||
- yarn install --cache-folder .yarn
|
||||
|
||||
build-composer-dependencies:
|
||||
extends: .default
|
||||
stage: build
|
||||
needs: [ ]
|
||||
variables:
|
||||
COMPOSER_CACHE_DIR: '.composer'
|
||||
script:
|
||||
- composer --version
|
||||
- COMPOSER_CACHE_DIR=.composer
|
||||
composer install --prefer-dist --no-progress --optimize-autoloader
|
||||
artifacts:
|
||||
when: on_success
|
||||
expire_in: 2 weeks
|
||||
paths:
|
||||
- .Build
|
||||
cache:
|
||||
paths:
|
||||
- .composer
|
||||
- .Build
|
||||
|
||||
php-lint-php7.2:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
script:
|
||||
- composer ci:php:lint
|
||||
|
||||
php-lint-php7.3:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
script:
|
||||
- composer ci:php:lint
|
||||
|
||||
php-lint-php7.4:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
script:
|
||||
- composer ci:php:lint
|
||||
|
||||
ts-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- composer ci:ts:lint
|
||||
|
||||
json-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- composer ci:json:lint
|
||||
|
||||
yaml-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- composer ci:yaml:lint
|
||||
|
||||
xliff-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- wget https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd
|
||||
- xmllint --schema ./xliff-core-1.2-strict.xsd
|
||||
--noout $(find Resources -name '*.xlf')
|
||||
|
||||
javascript-lint:
|
||||
extends: .default-frontend
|
||||
stage: lint
|
||||
script:
|
||||
- yarn lint:js
|
||||
|
||||
style-lint:
|
||||
extends: .default-frontend
|
||||
stage: lint
|
||||
script:
|
||||
- yarn lint:style
|
||||
|
||||
unit-php7.2-v10:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:unit
|
||||
|
||||
unit-php7.3-v10:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:unit
|
||||
|
||||
unit-php7.4-v10:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:unit
|
||||
|
||||
func-php7.2-v10:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:functional
|
||||
|
||||
func-php7.3-v10:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:functional
|
||||
|
||||
func-php7.4-v10:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:functional
|
||||
|
||||
unit-php7.2-v9:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:unit
|
||||
|
||||
unit-php7.3-v9:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:unit
|
||||
|
||||
unit-php7.4-v9:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:unit
|
||||
|
||||
func-php7.2-v9:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:functional
|
||||
|
||||
func-php7.3-v9:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:functional
|
||||
|
||||
func-php7.4-v9:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:functional
|
||||
|
||||
phpcs:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
- php-lint-php7.3
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer ci:php:sniff
|
||||
|
||||
php-copypaste-check:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
- php-lint-php7.3
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer ci:php:copypaste
|
||||
|
||||
phpstan:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
- php-lint-php7.3
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer ci:php:stan
|
||||
|
||||
composer-normalize:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
script:
|
||||
- composer ci:composer:normalize
|
||||
|
|
12
.gitlab/pipeline/jobs/.default-frontend.yml
Normal file
12
.gitlab/pipeline/jobs/.default-frontend.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
.default-frontend:
|
||||
image: node:latest
|
||||
needs: [ ]
|
||||
cache:
|
||||
key: "$CI_PROJECT_ID"
|
||||
paths:
|
||||
- Resources/Private/node_modules/
|
||||
- Resources/Private/.yarn
|
||||
before_script:
|
||||
- npm install -g eslint
|
||||
- cd ./Resources/Private
|
||||
- yarn install --cache-folder .yarn
|
4
.gitlab/pipeline/jobs/.default.yml
Normal file
4
.gitlab/pipeline/jobs/.default.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
.default:
|
||||
image: php:7.4
|
||||
before_script:
|
||||
- bash .gitlab/build/docker_install.sh > /dev/null
|
6
.gitlab/pipeline/jobs/.variables.yml
Normal file
6
.gitlab/pipeline/jobs/.variables.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
variables:
|
||||
MYSQL_ROOT_PASSWORD: root
|
||||
typo3DatabaseName: typo3
|
||||
typo3DatabaseHost: mariadb
|
||||
typo3DatabaseUsername: root
|
||||
typo3DatabasePassword: root
|
19
.gitlab/pipeline/jobs/build-composer-dependencies.yml
Normal file
19
.gitlab/pipeline/jobs/build-composer-dependencies.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
build-composer-dependencies:
|
||||
extends: .default
|
||||
stage: build
|
||||
needs: [ ]
|
||||
variables:
|
||||
COMPOSER_CACHE_DIR: '.composer'
|
||||
script:
|
||||
- composer --version
|
||||
- COMPOSER_CACHE_DIR=.composer
|
||||
composer install --prefer-dist --no-progress --optimize-autoloader
|
||||
artifacts:
|
||||
when: on_success
|
||||
expire_in: 2 weeks
|
||||
paths:
|
||||
- .Build
|
||||
cache:
|
||||
paths:
|
||||
- .composer
|
||||
- .Build
|
5
.gitlab/pipeline/jobs/composer-normalize.yml
Normal file
5
.gitlab/pipeline/jobs/composer-normalize.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
composer-normalize:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
script:
|
||||
- composer ci:composer:normalize
|
12
.gitlab/pipeline/jobs/func-php7.2-v10.yml
Normal file
12
.gitlab/pipeline/jobs/func-php7.2-v10.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
func-php7.2-v10:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:functional
|
13
.gitlab/pipeline/jobs/func-php7.2-v9.yml
Normal file
13
.gitlab/pipeline/jobs/func-php7.2-v9.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
func-php7.2-v9:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:functional
|
12
.gitlab/pipeline/jobs/func-php7.3-v10.yml
Normal file
12
.gitlab/pipeline/jobs/func-php7.3-v10.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
func-php7.3-v10:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:functional
|
13
.gitlab/pipeline/jobs/func-php7.3-v9.yml
Normal file
13
.gitlab/pipeline/jobs/func-php7.3-v9.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
func-php7.3-v9:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:functional
|
12
.gitlab/pipeline/jobs/func-php7.4-v10.yml
Normal file
12
.gitlab/pipeline/jobs/func-php7.4-v10.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
func-php7.4-v10:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:functional
|
13
.gitlab/pipeline/jobs/func-php7.4-v9.yml
Normal file
13
.gitlab/pipeline/jobs/func-php7.4-v9.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
func-php7.4-v9:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
services:
|
||||
- mariadb:10
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:functional
|
11
.gitlab/pipeline/jobs/javascript-lint.yml
Normal file
11
.gitlab/pipeline/jobs/javascript-lint.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
javascript-lint:
|
||||
extends: .default-frontend
|
||||
stage: lint
|
||||
script:
|
||||
- yarn lint:js
|
||||
|
||||
style-lint:
|
||||
extends: .default-frontend
|
||||
stage: lint
|
||||
script:
|
||||
- yarn lint:style
|
7
.gitlab/pipeline/jobs/json-lint.yml
Normal file
7
.gitlab/pipeline/jobs/json-lint.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
json-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- composer ci:json:lint
|
10
.gitlab/pipeline/jobs/php-copypaste-check.yml
Normal file
10
.gitlab/pipeline/jobs/php-copypaste-check.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
php-copypaste-check:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
- php-lint-php7.3
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer ci:php:copypaste
|
7
.gitlab/pipeline/jobs/php-lint-php7.2.yml
Normal file
7
.gitlab/pipeline/jobs/php-lint-php7.2.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
php-lint-php7.2:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
script:
|
||||
- composer ci:php:lint
|
7
.gitlab/pipeline/jobs/php-lint-php7.3.yml
Normal file
7
.gitlab/pipeline/jobs/php-lint-php7.3.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
php-lint-php7.3:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
script:
|
||||
- composer ci:php:lint
|
7
.gitlab/pipeline/jobs/php-lint-php7.4.yml
Normal file
7
.gitlab/pipeline/jobs/php-lint-php7.4.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
php-lint-php7.4:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
stage: lint
|
||||
needs: [ ]
|
||||
script:
|
||||
- composer ci:php:lint
|
10
.gitlab/pipeline/jobs/phpcs.yml
Normal file
10
.gitlab/pipeline/jobs/phpcs.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
phpcs:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
- php-lint-php7.3
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer ci:php:sniff
|
10
.gitlab/pipeline/jobs/phpstan.yml
Normal file
10
.gitlab/pipeline/jobs/phpstan.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
phpstan:
|
||||
extends: .default
|
||||
stage: codestyle
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
- php-lint-php7.3
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer ci:php:stan
|
7
.gitlab/pipeline/jobs/ts-lint.yml
Normal file
7
.gitlab/pipeline/jobs/ts-lint.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
ts-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- composer ci:ts:lint
|
10
.gitlab/pipeline/jobs/unit-php7.2-v10.yml
Normal file
10
.gitlab/pipeline/jobs/unit-php7.2-v10.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
unit-php7.2-v10:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:unit
|
11
.gitlab/pipeline/jobs/unit-php7.2-v9.yml
Normal file
11
.gitlab/pipeline/jobs/unit-php7.2-v9.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
unit-php7.2-v9:
|
||||
extends: .default
|
||||
image: php:7.2
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:unit
|
10
.gitlab/pipeline/jobs/unit-php7.3-v10.yml
Normal file
10
.gitlab/pipeline/jobs/unit-php7.3-v10.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
unit-php7.3-v10:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:unit
|
11
.gitlab/pipeline/jobs/unit-php7.3-v9.yml
Normal file
11
.gitlab/pipeline/jobs/unit-php7.3-v9.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
unit-php7.3-v9:
|
||||
extends: .default
|
||||
image: php:7.3
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.3
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:unit
|
10
.gitlab/pipeline/jobs/unit-php7.4-v10.yml
Normal file
10
.gitlab/pipeline/jobs/unit-php7.4-v10.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
unit-php7.4-v10:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
stage: test
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^10.4"
|
||||
- composer ci:tests:unit
|
11
.gitlab/pipeline/jobs/unit-php7.4-v9.yml
Normal file
11
.gitlab/pipeline/jobs/unit-php7.4-v9.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
unit-php7.4-v9:
|
||||
extends: .default
|
||||
image: php:7.4
|
||||
stage: test
|
||||
dependencies: [ ]
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer require --no-progress typo3/minimal:"^9.5"
|
||||
- composer ci:tests:unit
|
9
.gitlab/pipeline/jobs/xliff-lint.yml
Normal file
9
.gitlab/pipeline/jobs/xliff-lint.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
xliff-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- wget https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd
|
||||
- xmllint --schema ./xliff-core-1.2-strict.xsd
|
||||
--noout $(find Resources -name '*.xlf')
|
7
.gitlab/pipeline/jobs/yaml-lint.yml
Normal file
7
.gitlab/pipeline/jobs/yaml-lint.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
yaml-lint:
|
||||
extends: .default
|
||||
stage: lint
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- composer ci:yaml:lint
|
Loading…
Reference in a new issue