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

[TASK] Drop v9 support in gitlab ci (#380)

Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.pl>
This commit is contained in:
Łukasz Uznański 2022-02-11 21:12:54 +01:00 committed by GitHub
parent 822bc5561e
commit 9a870876b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 0 additions and 78 deletions

View file

@ -12,11 +12,8 @@ include:
- '/.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'
@ -27,11 +24,8 @@ include:
- '/.gitlab/pipeline/jobs/php-lint-php8.0.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'

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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