2020-07-07 16:33:34 +02:00
|
|
|
---
|
|
|
|
name: CI
|
2019-12-07 16:00:06 +01:00
|
|
|
on:
|
2020-08-25 17:06:41 +02:00
|
|
|
push:
|
|
|
|
branches:
|
2020-10-10 14:02:59 +02:00
|
|
|
- main
|
2020-08-25 17:06:41 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2020-10-10 14:02:59 +02:00
|
|
|
- main
|
2019-12-07 16:00:06 +01:00
|
|
|
jobs:
|
|
|
|
php-lint:
|
2020-07-07 16:33:34 +02:00
|
|
|
name: "PHP linter"
|
2019-12-07 16:00:06 +01:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-07 16:33:34 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2020-07-22 12:38:58 +02:00
|
|
|
uses: actions/checkout@v2
|
2020-07-07 16:33:34 +02:00
|
|
|
- name: "Install PHP"
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: "${{ matrix.php-version }}"
|
|
|
|
- name: "Run PHP lint"
|
|
|
|
run: "composer ci:php:lint"
|
2019-12-07 16:00:06 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-version:
|
|
|
|
- 7.2
|
|
|
|
- 7.3
|
|
|
|
- 7.4
|
2020-06-24 15:31:29 +02:00
|
|
|
code-quality:
|
2020-07-07 16:33:34 +02:00
|
|
|
name: "Code quality checks"
|
2019-12-07 17:00:50 +01:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-07 16:33:34 +02:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-07-22 12:38:58 +02:00
|
|
|
uses: actions/checkout@v2
|
2020-07-07 16:33:34 +02:00
|
|
|
-
|
|
|
|
name: "Install PHP"
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: "${{ matrix.php-version }}"
|
|
|
|
-
|
|
|
|
name: "Cache dependencies installed with composer"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
2020-07-08 16:53:59 +02:00
|
|
|
key: "php${{ matrix.php-version }}-
|
|
|
|
composer-${{ hashFiles('**/composer.json') }}"
|
2020-07-07 16:33:34 +02:00
|
|
|
path: ~/.composer/cache
|
|
|
|
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
|
|
|
-
|
|
|
|
name: "Install Composer dependencies"
|
|
|
|
run: "composer install --no-progress"
|
|
|
|
-
|
|
|
|
name: "Run command"
|
|
|
|
run: "composer ci:${{ matrix.command }}"
|
2020-05-22 11:38:45 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-06-24 15:31:29 +02:00
|
|
|
command:
|
2020-07-07 16:33:34 +02:00
|
|
|
- "ts:lint"
|
2020-08-05 13:49:10 +02:00
|
|
|
- "yaml:lint"
|
2020-07-21 12:59:26 +02:00
|
|
|
- "json:lint"
|
2020-07-07 16:33:34 +02:00
|
|
|
- "php:sniff"
|
2020-07-08 17:41:07 +02:00
|
|
|
- "php:codestyle"
|
2020-05-22 11:38:45 +02:00
|
|
|
php-version:
|
2020-07-23 12:39:02 +02:00
|
|
|
- 7.4
|
2020-07-08 16:53:12 +02:00
|
|
|
xliff-lint:
|
|
|
|
name: "Xliff linter"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
-
|
|
|
|
name: "Install xmllint"
|
2020-09-04 20:39:06 +02:00
|
|
|
run: "sudo apt-get install libxml2-utils wget"
|
|
|
|
-
|
|
|
|
name: "Download xliff schema"
|
|
|
|
run: "wget https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd"
|
2020-07-08 16:53:12 +02:00
|
|
|
-
|
|
|
|
name: "Run lint"
|
2020-09-04 20:39:06 +02:00
|
|
|
run: "xmllint --schema ./xliff-core-1.2-strict.xsd
|
2020-07-09 13:17:33 +02:00
|
|
|
--noout $(find Resources -name '*.xlf')"
|
2019-12-07 19:00:51 +01:00
|
|
|
unit-tests:
|
2020-07-07 16:33:34 +02:00
|
|
|
name: "Unit tests"
|
2019-12-07 19:00:51 +01:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-05 11:40:46 +02:00
|
|
|
needs: php-lint
|
2020-07-07 16:33:34 +02:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-07-22 12:38:58 +02:00
|
|
|
uses: actions/checkout@v2
|
2020-07-07 16:33:34 +02:00
|
|
|
-
|
|
|
|
name: "Install PHP"
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: "${{ matrix.php-version }}"
|
|
|
|
-
|
|
|
|
name: "Cache dependencies installed with composer"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
2020-07-08 16:53:59 +02:00
|
|
|
key: "php${{ matrix.php-version }}
|
|
|
|
-composer-${{ hashFiles('**/composer.json') }}"
|
2020-07-07 16:33:34 +02:00
|
|
|
path: ~/.composer/cache
|
|
|
|
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
|
|
|
-
|
|
|
|
env:
|
|
|
|
TYPO3: "${{ matrix.typo3-version }}"
|
|
|
|
name: "Install TYPO3 Core"
|
|
|
|
run: |
|
|
|
|
composer require typo3/minimal:"$TYPO3"
|
|
|
|
composer show
|
|
|
|
-
|
|
|
|
if: "matrix.composer-dependencies == 'lowest'"
|
|
|
|
name: "Install lowest dependencies with composer"
|
|
|
|
run: |
|
2020-07-08 16:53:59 +02:00
|
|
|
composer update --no-ansi --no-interaction |
|
|
|
|
--no-progress --no-suggest --prefer-lowest
|
2020-07-07 16:33:34 +02:00
|
|
|
composer show
|
|
|
|
-
|
|
|
|
if: "matrix.composer-dependencies == 'highest'"
|
|
|
|
name: "Install highest dependencies with composer"
|
|
|
|
run: |
|
|
|
|
composer update --no-ansi --no-interaction --no-progress --no-suggest
|
|
|
|
composer show
|
|
|
|
-
|
|
|
|
name: "Run unit tests"
|
|
|
|
run: "composer ci:tests:unit"
|
2019-12-07 19:00:51 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-12-07 19:20:34 +01:00
|
|
|
composer-dependencies:
|
|
|
|
- highest
|
2019-12-07 19:00:51 +01:00
|
|
|
php-version:
|
|
|
|
- 7.2
|
|
|
|
- 7.3
|
|
|
|
- 7.4
|
2020-07-07 16:33:34 +02:00
|
|
|
typo3-version:
|
|
|
|
- ^9.5
|
2020-07-23 12:41:27 +02:00
|
|
|
- ^10.4
|
2020-06-06 23:09:20 +02:00
|
|
|
functional-tests:
|
2020-07-07 16:33:34 +02:00
|
|
|
name: "Functional tests"
|
2020-06-06 23:09:20 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-05 11:40:46 +02:00
|
|
|
needs: php-lint
|
2020-07-07 16:33:34 +02:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-07-22 12:38:58 +02:00
|
|
|
uses: actions/checkout@v2
|
2020-07-07 16:33:34 +02:00
|
|
|
-
|
|
|
|
name: "Install PHP"
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: "${{ matrix.php-version }}"
|
|
|
|
-
|
|
|
|
name: "Cache dependencies installed with composer"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
2020-07-08 16:53:59 +02:00
|
|
|
key: "php${{ matrix.php-version }}
|
|
|
|
-composer-${{ hashFiles('**/composer.json') }}"
|
2020-07-07 16:33:34 +02:00
|
|
|
path: ~/.composer/cache
|
|
|
|
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
|
|
|
-
|
|
|
|
env:
|
|
|
|
TYPO3: "${{ matrix.typo3-version }}"
|
|
|
|
name: "Install TYPO3 Core"
|
|
|
|
run: |
|
|
|
|
composer require typo3/minimal:"$TYPO3"
|
|
|
|
composer show
|
|
|
|
-
|
|
|
|
if: "matrix.composer-dependencies == 'lowest'"
|
|
|
|
name: "Install lowest dependencies with composer"
|
|
|
|
run: |
|
2020-07-08 16:53:59 +02:00
|
|
|
composer update --no-ansi --no-interaction |
|
|
|
|
--no-progress --no-suggest --prefer-lowest
|
2020-07-07 16:33:34 +02:00
|
|
|
composer show
|
|
|
|
-
|
|
|
|
if: "matrix.composer-dependencies == 'highest'"
|
|
|
|
name: "Install highest dependencies with composer"
|
|
|
|
run: |
|
|
|
|
composer update --no-ansi --no-interaction --no-progress --no-suggest
|
|
|
|
composer show
|
|
|
|
-
|
|
|
|
name: "Start MySQL"
|
|
|
|
run: "sudo /etc/init.d/mysql start"
|
|
|
|
-
|
|
|
|
name: "Run functional tests"
|
2020-10-31 12:38:41 +01:00
|
|
|
run: |
|
2020-07-07 16:33:34 +02:00
|
|
|
export typo3DatabaseName="typo3";
|
|
|
|
export typo3DatabaseHost="127.0.0.1";
|
|
|
|
export typo3DatabaseUsername="root";
|
|
|
|
export typo3DatabasePassword="root";
|
|
|
|
composer ci:tests:functional
|
2020-06-06 23:09:20 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
composer-dependencies:
|
|
|
|
- highest
|
|
|
|
php-version:
|
|
|
|
- 7.2
|
|
|
|
- 7.3
|
|
|
|
- 7.4
|
2020-07-07 16:33:34 +02:00
|
|
|
typo3-version:
|
2020-07-08 16:53:59 +02:00
|
|
|
- ^9.5
|
2020-07-23 12:41:27 +02:00
|
|
|
- ^10.4
|