2019-12-07 16:00:06 +01:00
|
|
|
on:
|
|
|
|
- pull_request
|
|
|
|
- push
|
|
|
|
|
|
|
|
name: CI
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
php-lint:
|
|
|
|
name: PHP linter
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-version:
|
|
|
|
- 7.2
|
|
|
|
- 7.3
|
|
|
|
- 7.4
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
2020-05-22 11:38:45 +02:00
|
|
|
- name: Install PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-version }}
|
|
|
|
|
2019-12-07 16:00:06 +01:00
|
|
|
- name: Run PHP lint
|
|
|
|
run: composer ci:php:lint
|
2019-12-07 16:37:17 +01:00
|
|
|
|
2020-06-24 15:31:29 +02:00
|
|
|
code-quality:
|
|
|
|
name: Code quality checks
|
2019-12-07 17:00:50 +01:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2020-05-22 11:38:45 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-06-24 15:31:29 +02:00
|
|
|
command:
|
|
|
|
- ts:lint
|
|
|
|
- php:sniff
|
2020-05-22 11:38:45 +02:00
|
|
|
php-version:
|
|
|
|
- 7.3
|
|
|
|
|
2019-12-07 17:00:50 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
2020-05-22 11:38:45 +02:00
|
|
|
- name: Install PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-version }}
|
|
|
|
|
2019-12-07 18:10:52 +01:00
|
|
|
- name: "Cache dependencies installed with composer"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.composer/cache
|
|
|
|
key: php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
php${{ matrix.php-version }}-composer-
|
|
|
|
|
2019-12-07 17:00:50 +01:00
|
|
|
- name: Install Composer dependencies
|
|
|
|
run: composer install --no-progress
|
|
|
|
|
2020-06-24 15:31:29 +02:00
|
|
|
- name: Run command
|
|
|
|
run: composer ci:${{ matrix.command }}
|
2019-12-07 19:00:51 +01:00
|
|
|
|
|
|
|
unit-tests:
|
|
|
|
name: Unit tests
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
typo3-version:
|
|
|
|
- "^9.5"
|
2020-06-06 23:09:20 +02:00
|
|
|
#- "^10.4"
|
2019-12-07 19:20:34 +01:00
|
|
|
composer-dependencies:
|
|
|
|
- highest
|
2020-06-06 23:09:20 +02:00
|
|
|
#- lowest
|
2019-12-07 19:00:51 +01:00
|
|
|
php-version:
|
|
|
|
- 7.2
|
|
|
|
- 7.3
|
|
|
|
- 7.4
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
2020-05-22 11:38:45 +02:00
|
|
|
- name: Install PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-version }}
|
|
|
|
|
2020-06-06 23:09:20 +02:00
|
|
|
- name: Cache dependencies installed with composer
|
2019-12-07 19:00:51 +01:00
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.composer/cache
|
|
|
|
key: php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
php${{ matrix.php-version }}-composer-
|
|
|
|
|
|
|
|
- name: Install TYPO3 Core
|
|
|
|
env:
|
|
|
|
TYPO3: ${{ matrix.typo3-version }}
|
|
|
|
run: |
|
|
|
|
composer require typo3/minimal:"$TYPO3"
|
|
|
|
composer show
|
|
|
|
|
2019-12-07 19:20:34 +01:00
|
|
|
- name: Install lowest dependencies with composer
|
|
|
|
if: matrix.composer-dependencies == 'lowest'
|
|
|
|
run: |
|
|
|
|
composer update --no-ansi --no-interaction --no-progress --no-suggest --prefer-lowest
|
|
|
|
composer show
|
|
|
|
|
|
|
|
- name: Install highest dependencies with composer
|
|
|
|
if: matrix.composer-dependencies == 'highest'
|
|
|
|
run: |
|
|
|
|
composer update --no-ansi --no-interaction --no-progress --no-suggest
|
|
|
|
composer show
|
2019-12-07 19:00:51 +01:00
|
|
|
|
|
|
|
- name: Run unit tests
|
|
|
|
run: composer ci:tests:unit
|
2020-06-06 23:09:20 +02:00
|
|
|
|
|
|
|
functional-tests:
|
|
|
|
name: Functional tests
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
typo3-version:
|
|
|
|
- "^9.5"
|
|
|
|
#- "^10.4"
|
|
|
|
composer-dependencies:
|
|
|
|
- highest
|
|
|
|
#- lowest
|
|
|
|
php-version:
|
|
|
|
- 7.2
|
|
|
|
- 7.3
|
|
|
|
- 7.4
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- 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:
|
|
|
|
path: ~/.composer/cache
|
|
|
|
key: php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
php${{ matrix.php-version }}-composer-
|
|
|
|
|
|
|
|
- name: Install TYPO3 Core
|
|
|
|
env:
|
|
|
|
TYPO3: ${{ matrix.typo3-version }}
|
|
|
|
run: |
|
|
|
|
composer require typo3/minimal:"$TYPO3"
|
|
|
|
composer show
|
|
|
|
|
|
|
|
- name: Install lowest dependencies with composer
|
|
|
|
if: matrix.composer-dependencies == 'lowest'
|
|
|
|
run: |
|
|
|
|
composer update --no-ansi --no-interaction --no-progress --no-suggest --prefer-lowest
|
|
|
|
composer show
|
|
|
|
|
|
|
|
- name: Install highest dependencies with composer
|
|
|
|
if: matrix.composer-dependencies == 'highest'
|
|
|
|
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
|
|
|
|
run: |
|
|
|
|
export typo3DatabaseName="typo3";
|
|
|
|
export typo3DatabaseHost="127.0.0.1";
|
|
|
|
export typo3DatabaseUsername="root";
|
|
|
|
export typo3DatabasePassword="root";
|
|
|
|
composer ci:tests:functional
|