Changeset 59402
- Timestamp:
- 11/13/2024 07:06:57 PM (3 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/install-testing.yml
r59282 r59402 97 97 # Performs the following steps: 98 98 # - Sets up PHP. 99 # - Starts the database server.100 99 # - Downloads the specified version of WordPress. 101 100 # - Creates a `wp-config.php` file. … … 158 157 tools: wp-cli${{ contains( fromJSON('["5.4", "5.5"]'), matrix.php ) && ':2.4.0' || '' }} 159 158 160 - name: Start the database server161 run: |162 sudo systemctl start ${{ matrix.db-type }}163 164 159 - name: Download WordPress 165 160 run: wp core download ${{ inputs.wp-version && format( '--version={0}', inputs.wp-version ) || '--version=nightly' }} -
trunk/.github/workflows/reusable-upgrade-testing.yml
r59280 r59402 43 43 # Performs the following steps: 44 44 # - Sets up PHP. 45 # - Starts the database server.46 45 # - Downloads the specified version of WordPress. 47 46 # - Creates a `wp-config.php` file. … … 69 68 -c "exec docker-entrypoint.sh mysqld${{ inputs.db-type == 'mysql' && contains( fromJSON('["7.2", "7.3"]'), inputs.php ) && ' --default-authentication-plugin=mysql_native_password' || '' }}" 70 69 71 72 70 steps: 73 71 - name: Set up PHP ${{ inputs.php }} … … 77 75 coverage: none 78 76 tools: wp-cli 79 80 - name: Start the database server81 run: |82 sudo systemctl start ${{ inputs.db-type }}83 77 84 78 - name: Download WordPress ${{ inputs.wp }}
Note: See TracChangeset
for help on using the changeset viewer.