Make WordPress Core

Changeset 58669


Ignore:
Timestamp:
07/03/2024 05:43:09 PM (3 months ago)
Author:
desrosj
Message:

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

This changes the default values for LOCAL_PHP and LOCAL_DB_VERSION in the 5.4 branch from latest to 7.4-fpm and 5.7, respectively, to properly reflect the highest versions of PHP and MySQL that this branch will support.

See #61533.

Location:
branches/5.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.4/.env

    r55521 r58669  
    1717
    1818# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
    19 LOCAL_PHP=latest
     19LOCAL_PHP=7.4-fpm
    2020
    2121##
  • branches/5.4/docker-compose.yml

    r58611 r58669  
    3333  ##
    3434  php:
    35     image: wordpressdevelop/php:${LOCAL_PHP-latest}
     35    image: wordpressdevelop/php:${LOCAL_PHP-7.4-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-7.4-fpm}
    9696
    9797    networks:
     
    123123  ##
    124124  phpunit:
    125     image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest}
     125    image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-7.4-fpm}
    126126
    127127    networks:
Note: See TracChangeset for help on using the changeset viewer.