Make WordPress Core

Changeset 49360 for trunk


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

Build/Test Tools: Revert [49358] to investigate failures.

Unprops desrosj.
See #50042.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/.env

    r49358 r49360  
    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.
    106##
    117
     
    1612LOCAL_DIR=src
    1713
    18 # The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
     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.
    1916LOCAL_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 ##
    40 LOCAL_PHPUNIT=${LOCAL_PHP}
    4117
    4218# Whether or not to enable XDebug.
  • trunk/docker-compose.yml

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

    r49358 r49360  
    91369136        },
    91379137        "dotenv": {
    9138             "version": "8.2.0",
    9139             "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
    9140             "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
     9138            "version": "8.1.0",
     9139            "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.1.0.tgz",
     9140            "integrity": "sha512-GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA==",
    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                 },
    2521025204                "bl": {
    2521125205                    "version": "4.0.3",
     
    2522025214                },
    2522125215                "buffer": {
    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"
     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"
    2522925223                    }
    2523025224                },
  • trunk/package.json

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

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

    r49358 r49360  
    1 const dotenv       = require( 'dotenv' );
    2 const dotenvExpand = require( 'dotenv-expand' );
     1const dotenv = require( 'dotenv' );
    32const wait_on = require( 'wait-on' );
    43const { execSync } = require( 'child_process' );
    54const { renameSync, readFileSync, writeFileSync } = require( 'fs' );
    65
    7 dotenvExpand( dotenv.config() );
     6dotenv.config();
    87
    98// Create wp-config.php.
  • trunk/tools/local-env/scripts/start.js

    r49358 r49360  
    1 const dotenv       = require( 'dotenv' );
    2 const dotenvExpand = require( 'dotenv-expand' );
     1const dotenv = require( 'dotenv' );
    32const { execSync } = require( 'child_process' );
    43
    5 dotenvExpand( dotenv.config() );
     4dotenv.config();
    65
    76// Start the local-env containers.
Note: See TracChangeset for help on using the changeset viewer.