mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
PHP 8.2 is expected to be released at the end of November 2022. Enabling the tests to run in CI on PHP 8.2 allows WordPress core to start getting ready. As an interim measure, while working through the PHP 8.1 and 8.2 issues, builds against these PHP versions are allowed to fail, so that they don't block PR merges in the Gutenberg project. Notes: * The `composer install` command for PHP 8.1 was still using the `--ignore-platform-reqs` option, while that has not been needed anymore for quite a while, so the condition is now reused for PHP 8.2. * The `--ignore-platform...` option used for the install is now made more specific: * Composer 2.0 added a `--ignore-platform-req=...` option to selectively ignore platform requirements. * Composer 2.2 then added the ability to only ignore the upper bound of platform requirements by adding the `+` sign. * Xdebug-related tests will not be run on PHP 8.2 at this time as the Docker image for PHP 8.2 does not contain Xdebug yet. Once a stable release of Xdebug 3.2.0 is available, it can be added to the Docker image and the test step can then be enabled for PHP 8.2. References: * [https://github.com/WordPress/wpdev-docker-images/pull/87 wpdev-docker-images PR #87: Add PHP 8.2 containers] * [https://github.com/composer/composer/releases/tag/2.0.0 Composer 2.0 changelog] * [https://github.com/composer/composer/releases/tag/2.2.0 Composer 2.2 changelog] * [https://xdebug.org/announcements/2022-07-20 Xdebug 3.2.0alpha1 release notes] * [https://xdebug.org/announcements/2022-07-25 Xdebug 3.2.0alpha2 release notes] Follow-up to [49077], [49162], [50299], [51588], [51604]. Props jrf, desrosj. See #56009. git-svn-id: https://develop.svn.wordpress.org/trunk@53922 602fd350-edb4-49c9-b593-d223f7449a82
249 lines
10 KiB
YAML
249 lines
10 KiB
YAML
name: PHPUnit Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- trunk
|
|
- '3.[7-9]'
|
|
- '[4-9].[0-9]'
|
|
tags:
|
|
- '[0-9]+.[0-9]'
|
|
- '[0-9]+.[0-9].[0-9]+'
|
|
pull_request:
|
|
branches:
|
|
- trunk
|
|
- '3.[7-9]'
|
|
- '[4-9].[0-9]'
|
|
workflow_dispatch:
|
|
# Once weekly On Sundays at 00:00 UTC.
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
# Cancels all previous workflow runs for pull requests that have not completed.
|
|
concurrency:
|
|
# The concurrency group contains the workflow name and the branch name for pull requests
|
|
# or the commit hash for any other events.
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: ${{ true }}
|
|
LOCAL_PHP_MEMCACHED: ${{ false }}
|
|
SLOW_TESTS: 'external-http,media,restapi'
|
|
|
|
jobs:
|
|
# Runs the PHPUnit tests for WordPress.
|
|
#
|
|
# Note: Steps running tests on PHP 8.1 + 8.2 are allowed to "continue-on-error" (for now).
|
|
# This prevents workflow runs from being marked as "failed" when only PHP 8.1/8.2 fails.
|
|
#
|
|
# Performs the following steps:
|
|
# - Sets environment variables.
|
|
# - Sets up the environment variables needed for testing with memcached (if desired).
|
|
# - Installs NodeJS.
|
|
# - Installs NPM dependencies
|
|
# - Configures caching for Composer.
|
|
# - Installs Composer dependencies.
|
|
# - Logs Docker debug information (about the Docker installation within the runner).
|
|
# - Starts the WordPress Docker container.
|
|
# - Logs general debug information about the runner.
|
|
# - Logs the running Docker containers.
|
|
# - Logs debug information from inside the WordPress Docker container.
|
|
# - Logs debug information about what's installed within the WordPress Docker containers.
|
|
# - Install WordPress within the Docker container.
|
|
# - Run the PHPUnit tests.
|
|
# - Ensures version-controlled files are not modified or deleted.
|
|
# - Checks out the WordPress Test reporter repository.
|
|
# - Reconnect the directory to the Git repository.
|
|
# - Submit the test results to the WordPress.org host test results.
|
|
test-php:
|
|
name: ${{ matrix.php }}${{ matrix.multisite && ' multisite' || '' }}${{ matrix.split_slow && ' slow tests' || '' }}${{ matrix.memcached && ' with memcached' || '' }} on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 20
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
|
|
os: [ ubuntu-latest ]
|
|
memcached: [ false ]
|
|
split_slow: [ false ]
|
|
multisite: [ false, true ]
|
|
include:
|
|
# Additional "slow" jobs for PHP 5.6.
|
|
- php: '5.6'
|
|
os: ubuntu-latest
|
|
memcached: false
|
|
multisite: false
|
|
split_slow: true
|
|
- php: '5.6'
|
|
os: ubuntu-latest
|
|
memcached: false
|
|
multisite: true
|
|
split_slow: true
|
|
# Include jobs for PHP 7.4 with memcached.
|
|
- php: '7.4'
|
|
os: ubuntu-latest
|
|
memcached: true
|
|
multisite: false
|
|
- php: '7.4'
|
|
os: ubuntu-latest
|
|
memcached: true
|
|
multisite: true
|
|
# Report the results of the PHP 7.4 without memcached job.
|
|
- php: '7.4'
|
|
os: ubuntu-latest
|
|
memcached: false
|
|
multisite: false
|
|
report: true
|
|
|
|
env:
|
|
LOCAL_PHP: ${{ matrix.php }}-fpm
|
|
LOCAL_PHP_MEMCACHED: ${{ matrix.memcached }}
|
|
PHPUNIT_CONFIG: ${{ matrix.multisite && 'tests/phpunit/multisite.xml' || 'phpunit.xml.dist' }}
|
|
|
|
steps:
|
|
- name: Configure environment variables
|
|
run: |
|
|
echo "PHP_FPM_UID=$(id -u)" >> $GITHUB_ENV
|
|
echo "PHP_FPM_GID=$(id -g)" >> $GITHUB_ENV
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
|
|
|
|
- name: Install NodeJS
|
|
uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: npm
|
|
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
|
|
# This date is used to ensure that the Composer cache is refreshed at least once every week.
|
|
# http://man7.org/linux/man-pages/man1/date.1.html
|
|
- name: "Get last Monday's date"
|
|
id: get-date
|
|
run: echo "::set-output name=date::$(/bin/date -u --date='last Mon' "+%F")"
|
|
|
|
- name: Get Composer cache directory
|
|
id: composer-cache
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- name: Cache Composer dependencies
|
|
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4
|
|
env:
|
|
cache-name: cache-composer-dependencies
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-php-${{ matrix.php }}-date-${{ steps.get-date.outputs.date }}-composer-${{ hashFiles('**/composer.json') }}
|
|
|
|
- name: Install Composer dependencies
|
|
run: |
|
|
docker-compose run --rm php composer --version
|
|
|
|
# Install using `composer update` as there is no `composer.lock` file.
|
|
if [ ${{ env.LOCAL_PHP }} == '8.2-fpm' ]; then
|
|
docker-compose run --rm php composer update --ignore-platform-req=php+
|
|
else
|
|
docker-compose run --rm php composer update
|
|
fi
|
|
|
|
- name: Docker debug information
|
|
run: |
|
|
docker -v
|
|
docker-compose -v
|
|
|
|
- name: Start Docker environment
|
|
run: |
|
|
npm run env:start
|
|
|
|
- name: General debug information
|
|
run: |
|
|
npm --version
|
|
node --version
|
|
curl --version
|
|
git --version
|
|
svn --version
|
|
|
|
- name: Log running Docker containers
|
|
run: docker ps -a
|
|
|
|
- name: WordPress Docker container debug information
|
|
run: |
|
|
docker-compose run --rm mysql mysql --version
|
|
docker-compose run --rm php php --version
|
|
docker-compose run --rm php php -m
|
|
docker-compose run --rm php php -i
|
|
docker-compose run --rm php locale -a
|
|
|
|
- name: Install WordPress
|
|
run: npm run env:install
|
|
|
|
- name: Run slow PHPUnit tests
|
|
if: ${{ matrix.split_slow }}
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} --group ${{ env.SLOW_TESTS }}
|
|
|
|
- name: Run PHPUnit tests for single site excluding slow tests
|
|
if: ${{ matrix.php < '7.0' && ! matrix.split_slow && ! matrix.multisite }}
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} --exclude-group ${{ env.SLOW_TESTS }},ajax,ms-files,ms-required
|
|
|
|
- name: Run PHPUnit tests for Multisite excluding slow tests
|
|
if: ${{ matrix.php < '7.0' && ! matrix.split_slow && matrix.multisite }}
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} --exclude-group ${{ env.SLOW_TESTS }},ajax,ms-files,ms-excluded,oembed-headers
|
|
|
|
- name: Run PHPUnit tests
|
|
if: ${{ matrix.php >= '7.0' }}
|
|
continue-on-error: ${{ matrix.php == '8.1' || matrix.php == '8.2' }}
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }}
|
|
|
|
- name: Run AJAX tests
|
|
if: ${{ ! matrix.split_slow }}
|
|
continue-on-error: ${{ matrix.php == '8.1' || matrix.php == '8.2' }}
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} --group ajax
|
|
|
|
- name: Run ms-files tests as a multisite install
|
|
if: ${{ matrix.multisite && ! matrix.split_slow }}
|
|
continue-on-error: ${{ matrix.php == '8.1' || matrix.php == '8.2' }}
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c tests/phpunit/multisite.xml --group ms-files
|
|
|
|
- name: Run external HTTP tests
|
|
if: ${{ ! matrix.multisite && ! matrix.split_slow }}
|
|
continue-on-error: ${{ matrix.php == '8.1' || matrix.php == '8.2' }}
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c phpunit.xml.dist --group external-http
|
|
|
|
# __fakegroup__ is excluded to force PHPUnit to ignore the <exclude> settings in phpunit.xml.dist.
|
|
- name: Run (Xdebug) tests
|
|
if: ${{ ! matrix.split_slow && matrix.php != '8.2' }}
|
|
continue-on-error: ${{ matrix.php == '8.1' }}
|
|
run: LOCAL_PHP_XDEBUG=true node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit -v --group xdebug --exclude-group __fakegroup__
|
|
|
|
- name: Ensure version-controlled files are not modified or deleted
|
|
run: git diff --exit-code
|
|
|
|
- name: Checkout the WordPress Test Reporter
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }}
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
|
|
with:
|
|
repository: 'WordPress/phpunit-test-runner'
|
|
path: 'test-runner'
|
|
|
|
- name: Submit test results to the WordPress.org host test results
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }}
|
|
env:
|
|
WPT_REPORT_API_KEY: "${{ secrets.WPT_REPORT_API_KEY }}"
|
|
run: docker-compose run --rm -e WPT_REPORT_API_KEY -e WPT_PREPARE_DIR=/var/www -e WPT_TEST_DIR=/var/www php php test-runner/report.php
|
|
|
|
slack-notifications:
|
|
name: Slack Notifications
|
|
uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk
|
|
needs: [ test-php ]
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }}
|
|
with:
|
|
calling_status: ${{ needs.test-php.result == 'success' && 'success' || needs.test-php.result == 'cancelled' && 'cancelled' || 'failure' }}
|
|
secrets:
|
|
SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }}
|
|
SLACK_GHA_CANCELLED_WEBHOOK: ${{ secrets.SLACK_GHA_CANCELLED_WEBHOOK }}
|
|
SLACK_GHA_FIXED_WEBHOOK: ${{ secrets.SLACK_GHA_FIXED_WEBHOOK }}
|
|
SLACK_GHA_FAILURE_WEBHOOK: ${{ secrets.SLACK_GHA_FAILURE_WEBHOOK }}
|