mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 06:16:13 +01:00
[TASK] Drop v9 support in gitlab ci (#380)
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.pl>
This commit is contained in:
parent
822bc5561e
commit
9a870876b3
7 changed files with 0 additions and 78 deletions
|
@ -12,11 +12,8 @@ include:
|
||||||
- '/.gitlab/pipeline/jobs/.variables.yml'
|
- '/.gitlab/pipeline/jobs/.variables.yml'
|
||||||
- '/.gitlab/pipeline/jobs/build-composer-dependencies.yml'
|
- '/.gitlab/pipeline/jobs/build-composer-dependencies.yml'
|
||||||
- '/.gitlab/pipeline/jobs/composer-normalize.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.2-v10.yml'
|
||||||
- '/.gitlab/pipeline/jobs/func-php7.3-v9.yml'
|
|
||||||
- '/.gitlab/pipeline/jobs/func-php7.3-v10.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/func-php7.4-v10.yml'
|
||||||
- '/.gitlab/pipeline/jobs/javascript-lint.yml'
|
- '/.gitlab/pipeline/jobs/javascript-lint.yml'
|
||||||
- '/.gitlab/pipeline/jobs/json-lint.yml'
|
- '/.gitlab/pipeline/jobs/json-lint.yml'
|
||||||
|
@ -27,11 +24,8 @@ include:
|
||||||
- '/.gitlab/pipeline/jobs/php-lint-php8.0.yml'
|
- '/.gitlab/pipeline/jobs/php-lint-php8.0.yml'
|
||||||
- '/.gitlab/pipeline/jobs/phpcs.yml'
|
- '/.gitlab/pipeline/jobs/phpcs.yml'
|
||||||
- '/.gitlab/pipeline/jobs/ts-lint.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.2-v10.yml'
|
||||||
- '/.gitlab/pipeline/jobs/unit-php7.3-v9.yml'
|
|
||||||
- '/.gitlab/pipeline/jobs/unit-php7.3-v10.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/unit-php7.4-v10.yml'
|
||||||
- '/.gitlab/pipeline/jobs/xliff-lint.yml'
|
- '/.gitlab/pipeline/jobs/xliff-lint.yml'
|
||||||
- '/.gitlab/pipeline/jobs/yaml-lint.yml'
|
- '/.gitlab/pipeline/jobs/yaml-lint.yml'
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
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"
|
|
||||||
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
|
|
|
@ -1,13 +0,0 @@
|
||||||
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"
|
|
||||||
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
|
|
|
@ -1,13 +0,0 @@
|
||||||
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"
|
|
||||||
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
|
|
|
@ -1,11 +0,0 @@
|
||||||
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
|
|
|
@ -1,11 +0,0 @@
|
||||||
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
|
|
|
@ -1,11 +0,0 @@
|
||||||
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
|
|
Loading…
Reference in a new issue