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-03-01 16:34:52 +00:00
|
|
|
|
2022-06-10 00:30:11 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
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:
|
|
|
|
- "7.2"
|
|
|
|
- "7.3"
|
|
|
|
- "7.4"
|
2021-02-23 15:49:29 +00:00
|
|
|
- "8.0"
|
2021-12-09 11:02:20 +00:00
|
|
|
- "8.1"
|
2023-07-21 09:10:15 +00:00
|
|
|
- "8.2"
|
GH Actions: run against PHP 8.3 (#11601)
* GH Actions: run against PHP 8.3
What with PHP 8.3 being close to the first RC, I'd like to suggest enabling runs against PHP 8.3 for the linting and test runs.
* Linting passes on PHP 8.3, so I propose to not allow new failures to be introduced there.
* The test runs, however, do not pass against PHP 8.3, so I'm marking those as `experimental` for now to allow for fixing the issue(s).
As for the compatibility issues (based on the test runs):
* PR 11599 fixes all known deprecation notices.
* There is, however, one test failure, which I'm not exactly sure how to fix, so I'm leaving this for the maintainers to decide upon.
Details:
Prior to PHP 8.3, `ReflectionMethod` could set a `private` method on a parent class to accessible. This is no longer possible in PHP 8.3 since php/php-src 9470 and breaks the `Composer\Test\Repository\ComposerRepositoryTest::testWhatProvides` test.
Also see: https://3v4l.org/8YcIk/rfc#vgit.master
* GH Actions: update addition of PHP 8.3
* Don't add PHP 8.3 to the `lint` workflow.
* Replace the PHP 8.2 extra builds instead of adding to them for `test`.
* Don't allow builds to fail.
---------
Co-authored-by: jrfnl <jrfnl@users.noreply.github.com>
2023-08-30 13:53:45 +00:00
|
|
|
- "8.3"
|
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:
|
2021-12-08 15:13:33 +00:00
|
|
|
- php-version: "7.2"
|
2020-04-22 06:28:14 +00:00
|
|
|
dependencies: highest
|
|
|
|
os: ubuntu-latest
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2021-12-08 15:13:33 +00:00
|
|
|
- php-version: "7.2"
|
2020-04-22 06:28:14 +00:00
|
|
|
dependencies: lowest
|
|
|
|
os: ubuntu-latest
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2023-12-08 17:25:18 +00:00
|
|
|
- php-version: "8.3"
|
2021-12-08 15:13:33 +00:00
|
|
|
dependencies: highest
|
|
|
|
os: ubuntu-latest
|
|
|
|
experimental: false
|
2023-12-08 17:25:18 +00:00
|
|
|
- php-version: "8.3"
|
2020-04-22 06:28:14 +00:00
|
|
|
os: windows-latest
|
|
|
|
dependencies: locked
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2023-12-08 17:25:18 +00:00
|
|
|
- php-version: "8.3"
|
2020-04-22 06:28:14 +00:00
|
|
|
os: macos-latest
|
|
|
|
dependencies: locked
|
2020-04-22 07:33:55 +00:00
|
|
|
experimental: false
|
2023-12-08 17:25:18 +00:00
|
|
|
- php-version: "8.4"
|
2021-12-08 15:13:33 +00:00
|
|
|
dependencies: lowest-ignore
|
2020-05-09 13:51:57 +00:00
|
|
|
os: ubuntu-latest
|
2023-12-08 17:25:18 +00:00
|
|
|
experimental: true
|
|
|
|
- php-version: "8.4"
|
2021-12-08 15:13:33 +00:00
|
|
|
dependencies: highest-ignore
|
2020-04-22 07:27:58 +00:00
|
|
|
os: ubuntu-latest
|
2023-12-08 17:25:18 +00:00
|
|
|
experimental: true
|
2020-03-01 16:34:52 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: "Checkout"
|
2023-09-07 12:47:04 +00:00
|
|
|
uses: "actions/checkout@v4"
|
2020-03-01 16:34:52 +00:00
|
|
|
|
|
|
|
- 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"
|
2021-12-08 21:03:22 +00:00
|
|
|
if: "contains(matrix.dependencies, 'highest') || contains(matrix.dependencies, 'lowest')"
|
2020-05-20 12:39:14 +00:00
|
|
|
run: "composer config platform --unset"
|
2020-04-22 06:28:14 +00:00
|
|
|
|
2021-11-30 09:31:25 +00:00
|
|
|
- name: "Allow alpha releases for latest-deps builds to catch problems earlier"
|
|
|
|
if: "contains(matrix.dependencies, 'highest')"
|
|
|
|
run: "composer config minimum-stability alpha"
|
|
|
|
|
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 }}"
|
|
|
|
|
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 }}"
|
|
|
|
|
2022-12-22 14:17:04 +00:00
|
|
|
- name: "Make source binary the one used by default (Linux / macOS)"
|
|
|
|
if: "!contains(matrix.os, 'windows')"
|
|
|
|
run: |
|
|
|
|
echo -e "$(pwd)/bin\n$(cat $GITHUB_PATH)" > $GITHUB_PATH
|
|
|
|
echo -e "COMPOSER_BINARY=$(pwd)/bin/composer" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: "Make source binary the one used by default (Windows)"
|
|
|
|
if: "contains(matrix.os, 'windows')"
|
|
|
|
run: |
|
|
|
|
$(
|
|
|
|
(echo "$(Get-Location)\bin")
|
|
|
|
(Get-Content $env:GITHUB_PATH -Raw)
|
|
|
|
) | Set-Content $env:GITHUB_PATH
|
|
|
|
echo "COMPOSER_BINARY=$(Get-Location)\bin\composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
|
|
|
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'"
|
2021-12-09 10:35:09 +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'"
|
2021-12-09 10:35:09 +00:00
|
|
|
run: "vendor/bin/simple-phpunit --configuration tests/complete.phpunit.xml"
|
2021-10-15 13:11:38 +00:00
|
|
|
|
|
|
|
validation:
|
|
|
|
name: "Composer validation"
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: "Checkout"
|
2023-09-07 12:47:04 +00:00
|
|
|
uses: "actions/checkout@v4"
|
2021-10-15 13:11:38 +00:00
|
|
|
|
|
|
|
- name: "Install PHP"
|
|
|
|
uses: "shivammathur/setup-php@v2"
|
|
|
|
with:
|
|
|
|
coverage: "none"
|
|
|
|
extensions: "intl, zip"
|
|
|
|
ini-values: "memory_limit=-1, phar.readonly=0, error_reporting=E_ALL, display_errors=On"
|
|
|
|
php-version: "7.4"
|
|
|
|
tools: composer
|
|
|
|
|
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "composer install ${{ env.COMPOSER_FLAGS }}"
|
|
|
|
|
|
|
|
- name: "Validate composer.json"
|
|
|
|
run: "bin/composer validate --strict"
|