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-05-28 08:31:46 +00:00
|
|
|
COMPOSER_FLAGS: "--ansi --no-interaction --no-progress --prefer-dist"
|
2020-05-20 12:39:14 +00:00
|
|
|
COMPOSER_UPDATE_FLAGS: ""
|
2020-08-13 14:37:32 +00:00
|
|
|
COMPOSER_TESTS_ARE_RUNNING: "1"
|
2020-03-01 16:34:52 +00:00
|
|
|
|
|
|
|
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"
|
2021-02-23 15:49:29 +00:00
|
|
|
- "8.0"
|
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:
|
2020-07-23 18:47:25 +00:00
|
|
|
- php-version: "5.3"
|
2020-04-22 06:28:14 +00:00
|
|
|
dependencies: highest
|
|
|
|
os: ubuntu-latest
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2020-07-23 18:47:25 +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
|
2021-02-23 15:49:29 +00:00
|
|
|
- php-version: "8.0"
|
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
|
2021-02-23 19:10:25 +00:00
|
|
|
- php-version: "8.0"
|
2020-04-22 06:28:14 +00:00
|
|
|
os: windows-latest
|
|
|
|
dependencies: locked
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2021-02-23 15:49:29 +00:00
|
|
|
- php-version: "8.0"
|
2020-04-22 06:28:14 +00:00
|
|
|
os: macos-latest
|
|
|
|
dependencies: locked
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2021-02-23 15:49:29 +00:00
|
|
|
- php-version: "8.1"
|
2020-05-13 06:56:37 +00:00
|
|
|
dependencies: lowest-ignore
|
2020-05-09 13:51:57 +00:00
|
|
|
os: ubuntu-latest
|
|
|
|
experimental: true
|
2021-02-23 15:49:29 +00:00
|
|
|
- php-version: "8.1"
|
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-06-16 08:05:44 +00:00
|
|
|
extensions: "intl, zip"
|
2021-06-21 19:01:08 +00:00
|
|
|
ini-values: "memory_limit=-1, phar.readonly=0, error_reporting=E_ALL, display_errors=On"
|
2020-03-01 16:34:52 +00:00
|
|
|
php-version: "${{ matrix.php-version }}"
|
2020-11-12 11:59:48 +00:00
|
|
|
tools: composer
|
2020-03-01 16:34:52 +00:00
|
|
|
|
2020-05-20 12:39:14 +00:00
|
|
|
- name: "Handle lowest dependencies update"
|
|
|
|
if: "contains(matrix.dependencies, 'lowest')"
|
2020-10-13 09:22:34 +00:00
|
|
|
run: "echo \"COMPOSER_UPDATE_FLAGS=$COMPOSER_UPDATE_FLAGS --prefer-lowest\" >> $GITHUB_ENV"
|
2020-03-01 16:34:52 +00:00
|
|
|
|
2020-05-20 12:39:14 +00:00
|
|
|
- name: "Handle ignore-platform-reqs dependencies update"
|
|
|
|
if: "contains(matrix.dependencies, 'ignore')"
|
2020-10-13 09:22:34 +00:00
|
|
|
run: "echo \"COMPOSER_FLAGS=$COMPOSER_FLAGS --ignore-platform-req=php\" >> $GITHUB_ENV"
|
2020-05-04 12:30:17 +00:00
|
|
|
|
2020-05-20 12:39:14 +00:00
|
|
|
- name: "Remove platform config to get latest dependencies for current PHP version when build is not locked"
|
|
|
|
run: "composer config platform --unset"
|
2020-04-22 06:28:14 +00:00
|
|
|
|
2020-05-20 12:39:14 +00:00
|
|
|
- name: "Update dependencies from composer.json using composer binary provided by system"
|
|
|
|
if: "contains(matrix.dependencies, 'highest') || contains(matrix.dependencies, 'lowest')"
|
|
|
|
run: "composer update ${{ env.COMPOSER_UPDATE_FLAGS }} ${{ env.COMPOSER_FLAGS }}"
|
2020-05-13 06:56:37 +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 }}"
|
|
|
|
|
2021-02-23 15:49:29 +00:00
|
|
|
- name: "Require latest PHPUnitBridge for PHP 8.x"
|
|
|
|
if: "startsWith(matrix.php-version, '8.')"
|
2021-02-23 19:15:00 +00:00
|
|
|
# using ~ here to avoid issues with windows CLI removing the ^
|
|
|
|
run: 'composer require --no-update --dev "symfony/phpunit-bridge:~5.2"'
|
2020-05-28 07:49:41 +00:00
|
|
|
|
2021-10-15 10:55:41 +00:00
|
|
|
# temporary fix until phpunit-bridge has a release supporting 8.1
|
|
|
|
- name: "Require latest dev PHPUnitBridge for PHP 8.1"
|
|
|
|
if: "matrix.experimental"
|
|
|
|
# using ~ here to avoid issues with windows CLI removing the ^
|
|
|
|
run: 'composer require --no-update --dev "symfony/phpunit-bridge:~5.4@dev"'
|
|
|
|
|
2021-10-15 11:33:16 +00:00
|
|
|
- name: "Set ignored deprecations for php 8.1+ on lowest or locked deps"
|
|
|
|
if: "matrix.php-version >= '8.1' && !contains(matrix.dependencies, 'highest')"
|
|
|
|
run: "echo \"SYMFONY_DEPRECATIONS_HELPER=baselineFile=./tests/deprecations-8.1.json&max[direct]=0\" >> $GITHUB_ENV"
|
|
|
|
|
2021-02-23 15:49:29 +00:00
|
|
|
- name: "Update dev requirements to latest available for the current PHP even on locked builds as they are not bundled dependencies"
|
|
|
|
run: "composer update ${{ env.COMPOSER_FLAGS }} symfony/phpunit-bridge phpspec/prophecy phpdocumentor/* sebastian/* doctrine/instantiator"
|
2020-05-20 12:39:14 +00:00
|
|
|
|
2020-04-22 06:28:14 +00:00
|
|
|
- name: "Run install again using composer binary from source"
|
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: "Run tests"
|
2020-05-20 12:39:14 +00:00
|
|
|
if: "matrix.php-version != '7.3'"
|
2020-09-10 15:21:11 +00:00
|
|
|
run: "vendor/bin/simple-phpunit --verbose"
|
2020-05-06 09:25:57 +00:00
|
|
|
|
2020-05-20 12:39:14 +00:00
|
|
|
- name: "Run complete test suite on 7.3"
|
2020-05-06 11:23:38 +00:00
|
|
|
if: "matrix.php-version == '7.3'"
|
|
|
|
run: "vendor/bin/simple-phpunit --configuration tests/complete.phpunit.xml"
|