Make WordPress Core

Changeset 58667


Ignore:
Timestamp:
07/03/2024 05:39:47 PM (5 months ago)
Author:
desrosj
Message:

Build/Test Tools: Change 5.6 default values of LOCAL_PHP/LOCAL_DB_VERSION.

This changes the default values for LOCAL_PHP and LOCAL_DB_VERSION in the 5.6 branch from latest to 8.0-fpm (with beta support) and 5.7, respectively, to properly reflect the highest versions of PHP and MySQL that this branch will support.

See #61533.

Location:
branches/5.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.6/.env

    r55519 r58667  
    1717
    1818# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
    19 LOCAL_PHP=latest
     19LOCAL_PHP=8.0-fpm
    2020
    2121##
  • branches/5.6/docker-compose.yml

    r58605 r58667  
    3333  ##
    3434  php:
    35     image: wordpressdevelop/php:${LOCAL_PHP-latest}
     35    image: wordpressdevelop/php:${LOCAL_PHP-8.0-fpm}
    3636
    3737    networks:
     
    6464  ##
    6565  mysql:
    66     image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-latest}
     66    image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-5.7}
    6767    platform: linux/amd64
    6868
     
    9393  ##
    9494  cli:
    95     image: wordpressdevelop/cli:${LOCAL_PHP-latest}
     95    image: wordpressdevelop/cli:${LOCAL_PHP-8.0-fpm}
    9696
    9797    networks:
     
    123123  ##
    124124  phpunit:
    125     image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest}
     125    image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-8.0-fpm}
    126126
    127127    networks:
Note: See TracChangeset for help on using the changeset viewer.