2020-10-15 19:40:33 +00:00
|
|
|
name: PHPUnit Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-03-02 15:26:03 +00:00
|
|
|
- trunk
|
2021-02-12 16:01:54 +00:00
|
|
|
- '3.[7-9]'
|
|
|
|
- '[4-9].[0-9]'
|
|
|
|
tags:
|
2022-07-20 18:39:16 +00:00
|
|
|
- '[0-9]+.[0-9]'
|
|
|
|
- '[0-9]+.[0-9].[0-9]+'
|
2020-10-15 19:40:33 +00:00
|
|
|
pull_request:
|
2021-02-24 19:34:41 +00:00
|
|
|
branches:
|
2021-03-02 15:26:03 +00:00
|
|
|
- trunk
|
2021-02-24 19:34:41 +00:00
|
|
|
- '3.[7-9]'
|
|
|
|
- '[4-9].[0-9]'
|
2021-03-26 13:06:43 +00:00
|
|
|
workflow_dispatch:
|
2020-10-15 19:40:33 +00:00
|
|
|
# Once weekly On Sundays at 00:00 UTC.
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 0'
|
|
|
|
|
2021-05-19 17:36:54 +00:00
|
|
|
# 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
|
|
|
|
|
2020-10-15 19:40:33 +00:00
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: ${{ true }}
|
|
|
|
LOCAL_PHP_MEMCACHED: ${{ false }}
|
2021-02-26 15:07:03 +00:00
|
|
|
SLOW_TESTS: 'external-http,media,restapi'
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Runs the PHPUnit tests for WordPress.
|
|
|
|
#
|
|
|
|
# Performs the following steps:
|
2022-06-30 15:07:49 +00:00
|
|
|
# - Sets environment variables.
|
2022-11-16 19:32:57 +00:00
|
|
|
# - Checks out the repository.
|
|
|
|
# - Sets up Node.js.
|
2022-11-18 14:50:52 +00:00
|
|
|
# - Sets up PHP.
|
2022-06-30 15:07:49 +00:00
|
|
|
# - Installs Composer dependencies.
|
2022-11-18 14:50:52 +00:00
|
|
|
# - Installs npm dependencies
|
|
|
|
# - Logs general debug information about the runner.
|
2022-06-30 15:07:49 +00:00
|
|
|
# - Logs Docker debug information (about the Docker installation within the runner).
|
2020-10-15 19:40:33 +00:00
|
|
|
# - Starts the WordPress Docker container.
|
|
|
|
# - Logs the running Docker containers.
|
2020-10-29 01:46:44 +00:00
|
|
|
# - Logs debug information about what's installed within the WordPress Docker containers.
|
2020-10-15 19:40:33 +00:00
|
|
|
# - Install WordPress within the Docker container.
|
|
|
|
# - Run the PHPUnit tests.
|
2021-07-06 18:36:46 +00:00
|
|
|
# - Ensures version-controlled files are not modified or deleted.
|
2020-12-10 15:28:09 +00:00
|
|
|
# - Checks out the WordPress Test reporter repository.
|
|
|
|
# - Submit the test results to the WordPress.org host test results.
|
2020-10-15 19:40:33 +00:00
|
|
|
test-php:
|
2021-04-13 16:10:12 +00:00
|
|
|
name: ${{ matrix.php }}${{ matrix.multisite && ' multisite' || '' }}${{ matrix.split_slow && ' slow tests' || '' }}${{ matrix.memcached && ' with memcached' || '' }} on ${{ matrix.os }}
|
2020-10-15 19:40:33 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-11-23 17:40:00 +00:00
|
|
|
timeout-minutes: 20
|
2021-04-06 15:12:19 +00:00
|
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}
|
2020-10-15 19:40:33 +00:00
|
|
|
strategy:
|
2021-02-25 14:03:16 +00:00
|
|
|
fail-fast: false
|
2020-10-15 19:40:33 +00:00
|
|
|
matrix:
|
Build/Test Tools: Enable running the tests on PHP 8.2.
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
2022-08-23 13:07:17 +00:00
|
|
|
php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
|
2020-10-15 19:40:33 +00:00
|
|
|
os: [ ubuntu-latest ]
|
2020-10-19 18:22:21 +00:00
|
|
|
memcached: [ false ]
|
2021-02-26 15:07:03 +00:00
|
|
|
split_slow: [ false ]
|
2021-02-17 19:31:25 +00:00
|
|
|
multisite: [ false, true ]
|
2020-10-19 18:22:21 +00:00
|
|
|
include:
|
2021-02-26 15:07:03 +00:00
|
|
|
# Additional "slow" jobs for PHP 5.6.
|
2021-10-05 17:33:11 +00:00
|
|
|
- php: '5.6'
|
2021-02-26 15:07:03 +00:00
|
|
|
os: ubuntu-latest
|
|
|
|
memcached: false
|
|
|
|
multisite: false
|
|
|
|
split_slow: true
|
2021-10-05 17:33:11 +00:00
|
|
|
- php: '5.6'
|
2021-02-26 15:07:03 +00:00
|
|
|
os: ubuntu-latest
|
|
|
|
memcached: false
|
|
|
|
multisite: true
|
|
|
|
split_slow: true
|
2021-02-17 19:31:25 +00:00
|
|
|
# Include jobs for PHP 7.4 with memcached.
|
2020-10-19 18:22:21 +00:00
|
|
|
- php: '7.4'
|
|
|
|
os: ubuntu-latest
|
|
|
|
memcached: true
|
2021-02-17 19:31:25 +00:00
|
|
|
multisite: false
|
|
|
|
- php: '7.4'
|
|
|
|
os: ubuntu-latest
|
|
|
|
memcached: true
|
|
|
|
multisite: true
|
2020-10-19 18:22:21 +00:00
|
|
|
# Report the results of the PHP 7.4 without memcached job.
|
|
|
|
- php: '7.4'
|
|
|
|
os: ubuntu-latest
|
|
|
|
memcached: false
|
2021-02-17 19:31:25 +00:00
|
|
|
multisite: false
|
2020-10-19 18:22:21 +00:00
|
|
|
report: true
|
2021-08-09 20:03:52 +00:00
|
|
|
|
2020-10-15 19:40:33 +00:00
|
|
|
env:
|
2020-10-19 18:22:21 +00:00
|
|
|
LOCAL_PHP: ${{ matrix.php }}-fpm
|
|
|
|
LOCAL_PHP_MEMCACHED: ${{ matrix.memcached }}
|
2021-02-17 19:31:25 +00:00
|
|
|
PHPUNIT_CONFIG: ${{ matrix.multisite && 'tests/phpunit/multisite.xml' || 'phpunit.xml.dist' }}
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Configure environment variables
|
|
|
|
run: |
|
|
|
|
echo "PHP_FPM_UID=$(id -u)" >> $GITHUB_ENV
|
|
|
|
echo "PHP_FPM_GID=$(id -g)" >> $GITHUB_ENV
|
|
|
|
|
2021-02-26 14:07:53 +00:00
|
|
|
- name: Checkout repository
|
2023-01-27 19:23:20 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2020-10-15 19:40:33 +00:00
|
|
|
|
2022-11-16 19:32:57 +00:00
|
|
|
- name: Set up Node.js
|
2023-01-27 19:23:20 +00:00
|
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
2020-10-15 19:40:33 +00:00
|
|
|
with:
|
2022-04-08 18:37:20 +00:00
|
|
|
node-version-file: '.nvmrc'
|
2021-07-06 13:12:13 +00:00
|
|
|
cache: npm
|
2020-10-15 19:40:33 +00:00
|
|
|
|
2022-11-18 14:50:52 +00:00
|
|
|
##
|
|
|
|
# This allows Composer dependencies to be installed using a single step.
|
|
|
|
#
|
|
|
|
# Since the tests are currently run within the Docker containers where the PHP version varies,
|
|
|
|
# the same PHP version needs to be configured for the action runner machine so that the correct
|
|
|
|
# dependency versions are installed and cached.
|
|
|
|
##
|
|
|
|
- name: Set up PHP
|
2023-01-27 19:23:20 +00:00
|
|
|
uses: shivammathur/setup-php@8e2ac35f639d3e794c1da1f28999385ab6fdf0fc # v2.23.0
|
2022-11-18 14:50:52 +00:00
|
|
|
with:
|
|
|
|
php-version: '${{ matrix.php }}'
|
|
|
|
coverage: none
|
|
|
|
|
|
|
|
# Since Composer dependencies are installed using `composer update` and no lock file is in version control,
|
|
|
|
# passing a custom cache suffix ensures that the cache is flushed at least once per week.
|
|
|
|
- name: Install Composer dependencies
|
|
|
|
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0
|
|
|
|
with:
|
|
|
|
custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F")
|
|
|
|
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
2022-11-16 19:32:57 +00:00
|
|
|
- name: General debug information
|
|
|
|
run: |
|
|
|
|
npm --version
|
|
|
|
node --version
|
|
|
|
curl --version
|
|
|
|
git --version
|
|
|
|
svn --version
|
2022-11-18 14:50:52 +00:00
|
|
|
composer --version
|
|
|
|
locale -a
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
- name: Docker debug information
|
|
|
|
run: |
|
|
|
|
docker -v
|
|
|
|
docker-compose -v
|
|
|
|
|
|
|
|
- name: Start Docker environment
|
|
|
|
run: |
|
|
|
|
npm run env:start
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
2021-02-26 15:07:03 +00:00
|
|
|
- name: Run slow PHPUnit tests
|
2021-08-11 15:42:06 +00:00
|
|
|
if: ${{ matrix.split_slow }}
|
2021-09-24 16:54:42 +00:00
|
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} --group ${{ env.SLOW_TESTS }}
|
2021-02-26 15:07:03 +00:00
|
|
|
|
|
|
|
- name: Run PHPUnit tests for single site excluding slow tests
|
|
|
|
if: ${{ matrix.php < '7.0' && ! matrix.split_slow && ! matrix.multisite }}
|
2021-09-24 16:54:42 +00:00
|
|
|
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
|
2021-02-26 15:07:03 +00:00
|
|
|
|
|
|
|
- name: Run PHPUnit tests for Multisite excluding slow tests
|
|
|
|
if: ${{ matrix.php < '7.0' && ! matrix.split_slow && matrix.multisite }}
|
2021-09-24 16:54:42 +00:00
|
|
|
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
|
2021-02-26 15:07:03 +00:00
|
|
|
|
2020-10-15 19:40:33 +00:00
|
|
|
- name: Run PHPUnit tests
|
2021-08-11 15:42:06 +00:00
|
|
|
if: ${{ matrix.php >= '7.0' }}
|
2021-09-24 16:54:42 +00:00
|
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }}
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
- name: Run AJAX tests
|
2021-08-11 15:42:06 +00:00
|
|
|
if: ${{ ! matrix.split_slow }}
|
2021-09-24 16:54:42 +00:00
|
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c ${{ env.PHPUNIT_CONFIG }} --group ajax
|
2020-12-18 14:38:28 +00:00
|
|
|
|
2020-10-19 18:22:21 +00:00
|
|
|
- name: Run ms-files tests as a multisite install
|
2021-08-11 15:42:06 +00:00
|
|
|
if: ${{ matrix.multisite && ! matrix.split_slow }}
|
2021-09-24 16:54:42 +00:00
|
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c tests/phpunit/multisite.xml --group ms-files
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
- name: Run external HTTP tests
|
2021-08-11 15:42:06 +00:00
|
|
|
if: ${{ ! matrix.multisite && ! matrix.split_slow }}
|
2021-09-24 16:54:42 +00:00
|
|
|
run: node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --verbose -c phpunit.xml.dist --group external-http
|
2020-10-15 19:40:33 +00:00
|
|
|
|
|
|
|
# __fakegroup__ is excluded to force PHPUnit to ignore the <exclude> settings in phpunit.xml.dist.
|
Build/Test Tools: Enable running the tests on PHP 8.2.
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
2022-08-23 13:07:17 +00:00
|
|
|
- name: Run (Xdebug) tests
|
2022-12-14 00:22:53 +00:00
|
|
|
if: ${{ ! matrix.split_slow }}
|
2021-09-24 16:54:42 +00:00
|
|
|
run: LOCAL_PHP_XDEBUG=true node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit -v --group xdebug --exclude-group __fakegroup__
|
2020-10-15 19:40:33 +00:00
|
|
|
|
2021-07-06 18:36:46 +00:00
|
|
|
- name: Ensure version-controlled files are not modified or deleted
|
|
|
|
run: git diff --exit-code
|
|
|
|
|
2020-12-10 15:28:09 +00:00
|
|
|
- name: Checkout the WordPress Test Reporter
|
2021-11-10 20:58:15 +00:00
|
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }}
|
2023-01-27 19:23:20 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2020-10-15 19:40:33 +00:00
|
|
|
with:
|
|
|
|
repository: 'WordPress/phpunit-test-runner'
|
|
|
|
path: 'test-runner'
|
2020-12-10 14:18:12 +00:00
|
|
|
|
2020-12-10 15:28:09 +00:00
|
|
|
- name: Submit test results to the WordPress.org host test results
|
2021-11-10 20:58:15 +00:00
|
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }}
|
2020-12-10 14:18:12 +00:00
|
|
|
env:
|
2020-12-10 15:28:09 +00:00
|
|
|
WPT_REPORT_API_KEY: "${{ secrets.WPT_REPORT_API_KEY }}"
|
2020-12-10 19:17:28 +00:00
|
|
|
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
|
2021-10-20 14:40:47 +00:00
|
|
|
|
|
|
|
slack-notifications:
|
|
|
|
name: Slack Notifications
|
2021-11-10 20:58:15 +00:00
|
|
|
uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk
|
2021-10-20 14:40:47 +00:00
|
|
|
needs: [ test-php ]
|
2021-10-25 20:26:45 +00:00
|
|
|
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }}
|
2021-11-03 14:54:20 +00:00
|
|
|
with:
|
|
|
|
calling_status: ${{ needs.test-php.result == 'success' && 'success' || needs.test-php.result == 'cancelled' && 'cancelled' || 'failure' }}
|
2021-10-20 19:25:12 +00:00
|
|
|
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 }}
|
2022-08-26 19:19:11 +00:00
|
|
|
|
|
|
|
failed-workflow:
|
|
|
|
name: Failed workflow tasks
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [ test-php, slack-notifications ]
|
|
|
|
if: |
|
|
|
|
always() &&
|
|
|
|
github.repository == 'WordPress/wordpress-develop' &&
|
|
|
|
github.event_name != 'pull_request' &&
|
2022-08-31 14:29:22 +00:00
|
|
|
github.run_attempt < 2 &&
|
2022-08-26 19:19:11 +00:00
|
|
|
(
|
|
|
|
needs.test-php.result == 'cancelled' || needs.test-php.result == 'failure'
|
|
|
|
)
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Dispatch workflow run
|
2023-01-27 19:23:20 +00:00
|
|
|
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975 # v6.4.0
|
2022-08-26 19:19:11 +00:00
|
|
|
with:
|
2022-09-28 01:53:48 +00:00
|
|
|
retries: 2
|
|
|
|
retry-exempt-status-codes: 418
|
2022-08-26 19:19:11 +00:00
|
|
|
script: |
|
|
|
|
github.rest.actions.createWorkflowDispatch({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
workflow_id: 'failed-workflow.yml',
|
2022-10-24 15:18:37 +00:00
|
|
|
ref: 'trunk',
|
2022-08-26 19:19:11 +00:00
|
|
|
inputs: {
|
|
|
|
run_id: '${{ github.run_id }}'
|
|
|
|
}
|
|
|
|
});
|