Make WordPress Core


Ignore:
Timestamp:
11/13/2024 07:06:57 PM (7 months ago)
Author:
desrosj
Message:

Build/Test Tools: Avoid starting the database twice.

The database container is started when the services are initially set up. Having a separate step for this sometimes introduces unexpected failures for an unknown reason.

Props johnbillion.
See #62221.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/install-testing.yml

    r59282 r59402  
    9797  # Performs the following steps:
    9898  # - Sets up PHP.
    99   # - Starts the database server.
    10099  # - Downloads the specified version of WordPress.
    101100  # - Creates a `wp-config.php` file.
     
    158157          tools: wp-cli${{ contains( fromJSON('["5.4", "5.5"]'), matrix.php ) && ':2.4.0' || '' }}
    159158
    160       - name: Start the database server
    161         run: |
    162           sudo systemctl start ${{ matrix.db-type }}
    163 
    164159      - name: Download WordPress
    165160        run: wp core download ${{ inputs.wp-version && format( '--version={0}', inputs.wp-version ) || '--version=nightly' }}
Note: See TracChangeset for help on using the changeset viewer.