2020-03-01 16:34:52 +00:00
|
|
|
name: "Continuous Integration"
|
|
|
|
|
|
|
|
on:
|
2020-04-22 07:27:58 +00:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'doc/**'
|
2020-03-01 16:34:52 +00:00
|
|
|
|
|
|
|
env:
|
2020-04-22 06:28:14 +00:00
|
|
|
COMPOSER_FLAGS: "--ansi --no-interaction --no-progress --no-suggest --prefer-dist"
|
2020-03-01 16:34:52 +00:00
|
|
|
SYMFONY_PHPUNIT_VERSION: ""
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
2020-04-22 07:27:58 +00:00
|
|
|
name: "CI"
|
2020-03-01 16:34:52 +00:00
|
|
|
|
2020-04-22 06:28:14 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-04-22 07:27:58 +00:00
|
|
|
continue-on-error: ${{ matrix.experimental }}
|
2020-03-01 16:34:52 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-version:
|
|
|
|
- "5.3"
|
|
|
|
- "5.4"
|
|
|
|
- "5.5"
|
|
|
|
- "5.6"
|
|
|
|
- "7.0"
|
|
|
|
- "7.1"
|
|
|
|
- "7.2"
|
|
|
|
- "7.3"
|
|
|
|
- "7.4"
|
2020-04-22 07:27:58 +00:00
|
|
|
dependencies: [locked]
|
|
|
|
os: [ubuntu-latest]
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: [false]
|
2020-04-22 06:28:14 +00:00
|
|
|
include:
|
|
|
|
- php-version: 5.3
|
|
|
|
dependencies: highest
|
|
|
|
os: ubuntu-latest
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2020-04-22 07:27:58 +00:00
|
|
|
- php-version: 5.3
|
2020-04-22 06:28:14 +00:00
|
|
|
dependencies: lowest
|
|
|
|
os: ubuntu-latest
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2020-04-22 07:27:58 +00:00
|
|
|
- php-version: 7.4
|
2020-04-22 06:28:14 +00:00
|
|
|
dependencies: highest
|
2020-04-22 07:27:58 +00:00
|
|
|
os: ubuntu-latest
|
2020-04-22 08:57:07 +00:00
|
|
|
experimental: false
|
2020-04-22 06:28:14 +00:00
|
|
|
- php-version: 7.4
|
|
|
|
os: windows-latest
|
|
|
|
dependencies: locked
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2020-04-22 06:28:14 +00:00
|
|
|
- php-version: 7.4
|
|
|
|
os: macos-latest
|
|
|
|
dependencies: locked
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2020-05-09 13:51:57 +00:00
|
|
|
- php-version: 8.0
|
|
|
|
dependencies: lowest
|
|
|
|
os: ubuntu-latest
|
|
|
|
experimental: true
|
2020-04-22 07:27:58 +00:00
|
|
|
- php-version: 8.0
|
2020-05-04 12:30:17 +00:00
|
|
|
dependencies: highest-ignore
|
2020-04-22 07:27:58 +00:00
|
|
|
os: ubuntu-latest
|
|
|
|
experimental: true
|
2020-03-01 16:34:52 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: "Checkout"
|
|
|
|
uses: "actions/checkout@v2"
|
|
|
|
|
|
|
|
- name: "Install PHP"
|
|
|
|
uses: "shivammathur/setup-php@v2"
|
|
|
|
with:
|
|
|
|
coverage: "none"
|
2020-04-22 05:57:06 +00:00
|
|
|
extensions: "intl"
|
2020-05-06 11:32:13 +00:00
|
|
|
ini-values: "memory_limit=-1, phar.readonly=0"
|
2020-03-01 16:34:52 +00:00
|
|
|
php-version: "${{ matrix.php-version }}"
|
|
|
|
|
|
|
|
- name: "Determine composer cache directory"
|
|
|
|
id: "determine-composer-cache-directory"
|
|
|
|
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""
|
|
|
|
|
|
|
|
- name: "Cache dependencies installed with composer"
|
|
|
|
uses: "actions/cache@v1"
|
|
|
|
with:
|
|
|
|
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}"
|
|
|
|
key: "php-${{ matrix.php-version }}-symfony-php-unit-version-${{ env.SYMFONY_PHPUNIT_VERSION }}-${{ hashFiles('**/composer.lock') }}"
|
|
|
|
restore-keys: "php-${{ matrix.php-version }}-symfony-php-unit-version-${{ env.SYMFONY_PHPUNIT_VERSION }}"
|
|
|
|
|
|
|
|
- name: "Install highest dependencies from composer.json using composer binary provided by system"
|
|
|
|
if: "matrix.dependencies == 'highest'"
|
2020-04-22 07:27:58 +00:00
|
|
|
run: "composer config platform --unset && composer update ${{ env.COMPOSER_FLAGS }}"
|
2020-03-01 16:34:52 +00:00
|
|
|
|
2020-05-04 18:16:56 +00:00
|
|
|
- name: "Install highest dependencies from composer.json using composer binary provided by system, ignoring platform requirements"
|
2020-05-04 12:30:17 +00:00
|
|
|
if: "matrix.dependencies == 'highest-ignore'"
|
|
|
|
run: "composer config platform --unset && composer update ${{ env.COMPOSER_FLAGS }} --ignore-platform-reqs"
|
|
|
|
|
2020-04-22 07:27:58 +00:00
|
|
|
- name: "Install lowest dependencies from composer.json using composer binary provided by system"
|
2020-04-22 06:28:14 +00:00
|
|
|
if: "matrix.dependencies == 'lowest'"
|
2020-04-22 06:30:44 +00:00
|
|
|
run: "composer update ${{ env.COMPOSER_FLAGS }} --prefer-lowest"
|
2020-04-22 06:28:14 +00:00
|
|
|
|
2020-03-01 16:34:52 +00:00
|
|
|
- name: "Install dependencies from composer.lock using composer binary provided by system"
|
|
|
|
if: "matrix.dependencies == 'locked'"
|
|
|
|
run: "composer install ${{ env.COMPOSER_FLAGS }}"
|
|
|
|
|
2020-04-22 06:28:14 +00:00
|
|
|
- name: "Run install again using composer binary from source"
|
2020-05-04 18:16:56 +00:00
|
|
|
if: "matrix.dependencies != 'highest-ignore'"
|
2020-03-01 16:34:52 +00:00
|
|
|
run: "bin/composer install ${{ env.COMPOSER_FLAGS }}"
|
|
|
|
|
2020-04-22 07:27:58 +00:00
|
|
|
- name: "Validate composer.json"
|
|
|
|
run: "bin/composer validate"
|
|
|
|
|
2020-03-01 16:34:52 +00:00
|
|
|
- name: "Prepare git environment"
|
|
|
|
run: "git config --global user.name composer && git config --global user.email composer@example.com"
|
|
|
|
|
|
|
|
- name: "Set SYMFONY_PHPUNIT_VERSION environment variable"
|
|
|
|
if: "matrix.php-version == '7.4'"
|
|
|
|
run: "echo \"::set-env name=SYMFONY_PHPUNIT_VERSION::7.5\""
|
|
|
|
|
|
|
|
- name: "Run tests"
|
2020-05-06 11:23:38 +00:00
|
|
|
if: "matrix.php-version != '8.0' && matrix.php-version != '7.3'"
|
2020-03-01 16:34:52 +00:00
|
|
|
run: "vendor/bin/simple-phpunit"
|
2020-05-06 09:25:57 +00:00
|
|
|
|
2020-05-06 11:23:38 +00:00
|
|
|
- name: "Run Complete test suite"
|
|
|
|
if: "matrix.php-version == '7.3'"
|
|
|
|
run: "vendor/bin/simple-phpunit --configuration tests/complete.phpunit.xml"
|
|
|
|
|
2020-05-06 09:25:57 +00:00
|
|
|
- name: "Run tests for PHP 8"
|
|
|
|
if: "matrix.php-version == '8.0'"
|
2020-05-06 11:34:06 +00:00
|
|
|
run: |
|
2020-05-06 11:47:03 +00:00
|
|
|
bin/composer remove --dev symfony/phpunit-bridge --ignore-platform-reqs
|
2020-05-09 13:51:57 +00:00
|
|
|
bin/composer require phpunit/phpunit:^7.5 --ignore-platform-reqs --with-dependencies
|
2020-05-06 11:34:06 +00:00
|
|
|
vendor/bin/phpunit
|