Make WordPress Core

Changeset 49358 for trunk


Ignore:
Timestamp:
10/28/2020 07:01:19 PM (4 years ago)
Author:
desrosj
Message:

Build/Test Tools: Allow the desired version of PHPUnit to be passed to the local Docker environment.

This change introduces the LOCAL_PHPUNIT environment variable that allows the desired version of PHPUnit to be specified when running the PHP tests within the local Docker environment.

Because support for newer versions of PHPUnit is not backported, some versions of PHP need the ability to run multiple versions of PHPUnit for different branches. This adds the flexibility needed to use the Docker environment within those older branches to run the PHP tests.

Props johnbillion.
Fixes #50042.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/.env

    r49121 r49358  
    44# All of these options can be overridden by setting them as environment variables before starting
    55# the environment. You will need to restart your environment when changing any of these.
     6#
     7# Below, the following substitutions can be made:
     8# - '{version}': any major.minor PHP version from 5.2 onwards.
     9# - '{phpunit_version}': any major PHPUnit version starting with 4.
    610##
    711
     
    1216LOCAL_DIR=src
    1317
    14 # The PHP version to use. Valid options are 'latest', and '{version}-fpm', where '{version}' is any
    15 # x.y PHP version from 5.2 onwards.
     18# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
    1619LOCAL_PHP=latest
     20
     21##
     22# The PHPUnit version to use when running tests.
     23#
     24# Support for new PHPUnit versions is not backported to past versions, so some old WordPress branches require an older
     25# version to run tests.
     26#
     27# Valid versions are:
     28# - 'latest' for the highest version of PHPUnit supported on the highest version of PHP supported.
     29# - '{version}-fpm' for the highest version of PHPUnit supported on the specified version of PHP.
     30# - '{phpunit_version}-php-{version}-fpm' for a specific version of PHPUnit on the specified version of PHP. This format
     31# is only available for PHP versions 5.6 and higher.
     32#
     33# For the full list of available options, see https://hub.docker.com/r/wordpressdevelop/phpunit/tags.
     34#
     35# For full documentation on PHPUnit compatibility and WordPress versions, see
     36# https://make.wordpress.org/core/handbook/references/phpunit-compatibility-and-wordpress-versions/.
     37#
     38# This defaults to the value assigned to the value of LOCAL_PHP.
     39##
     40LOCAL_PHPUNIT=${LOCAL_PHP}
    1741
    1842# Whether or not to enable XDebug.
  • trunk/docker-compose.yml

    r49267 r49358  
    9797  ##
    9898  phpunit:
    99     image: wordpressdevelop/phpunit:${LOCAL_PHP-latest}
     99    image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest}
    100100
    101101    networks:
  • trunk/package-lock.json

    r49324 r49358  
    91369136        },
    91379137        "dotenv": {
    9138             "version": "8.1.0",
    9139             "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.1.0.tgz",
    9140             "integrity": "sha512-GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA==",
     9138            "version": "8.2.0",
     9139            "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
     9140            "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
    91419141            "dev": true
    91429142        },
     
    2520225202            },
    2520325203            "dependencies": {
     25204                "base64-js": {
     25205                    "version": "1.3.1",
     25206                    "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
     25207                    "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==",
     25208                    "dev": true
     25209                },
    2520425210                "bl": {
    2520525211                    "version": "4.0.3",
     
    2521425220                },
    2521525221                "buffer": {
    25216                     "version": "5.6.0",
    25217                     "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
    25218                     "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
    25219                     "dev": true,
    25220                     "requires": {
    25221                         "base64-js": "^1.0.2",
    25222                         "ieee754": "^1.1.4"
     25222                    "version": "5.7.0",
     25223                    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.0.tgz",
     25224                    "integrity": "sha512-cd+5r1VLBwUqTrmnzW+D7ABkJUM6mr7uv1dv+6jRw4Rcl7tFIFHDqHPL98LhpGFn3dbAt3gtLxtrWp4m1kFrqg==",
     25225                    "dev": true,
     25226                    "requires": {
     25227                        "base64-js": "^1.3.1",
     25228                        "ieee754": "^1.1.13"
    2522325229                    }
    2522425230                },
  • trunk/package.json

    r49324 r49358  
    3636        "copy-webpack-plugin": "^5.1.1",
    3737        "cssnano": "4.1.10",
    38         "dotenv": "8.1.0",
     38        "dotenv": "8.2.0",
    3939        "dotenv-expand": "5.1.0",
    4040        "grunt": "~1.1.0",
  • trunk/tools/local-env/scripts/docker.js

    r46586 r49358  
    1 const dotenv = require( 'dotenv' );
     1const dotenv       = require( 'dotenv' );
     2const dotenvExpand = require( 'dotenv-expand' );
    23const { execSync } = require( 'child_process' );
    3 dotenv.config();
     4
     5dotenvExpand( dotenv.config() );
    46
    57// Execute any docker-compose command passed to this script.
  • trunk/tools/local-env/scripts/install.js

    r49335 r49358  
    1 const dotenv = require( 'dotenv' );
     1const dotenv       = require( 'dotenv' );
     2const dotenvExpand = require( 'dotenv-expand' );
    23const wait_on = require( 'wait-on' );
    34const { execSync } = require( 'child_process' );
    45const { renameSync, readFileSync, writeFileSync } = require( 'fs' );
    56
    6 dotenv.config();
     7dotenvExpand( dotenv.config() );
    78
    89// Create wp-config.php.
  • trunk/tools/local-env/scripts/start.js

    r46586 r49358  
    1 const dotenv = require( 'dotenv' );
     1const dotenv       = require( 'dotenv' );
     2const dotenvExpand = require( 'dotenv-expand' );
    23const { execSync } = require( 'child_process' );
    34
    4 dotenv.config();
     5dotenvExpand( dotenv.config() );
    56
    67// Start the local-env containers.
Note: See TracChangeset for help on using the changeset viewer.