Changeset 59280
- Timestamp:
- 10/23/2024 12:13:07 AM (5 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/install-testing.yml
r59167 r59280 126 126 - db-version: '5.1' 127 127 - db-version: '5.5' 128 - php: '7.2' 129 db-version: '8.4' 130 - php: '7.3' 131 db-version: '8.4' 128 132 129 133 services: … … 134 138 options: >- 135 139 --health-cmd="mysqladmin ping" 136 --health-interval= 30s137 --health-timeout= 10s138 --health-retries= 5139 -e MYSQL_ROOT_PASSWORD= root140 -e MYSQL_DATABASE= test_db140 --health-interval="30s" 141 --health-timeout="10s" 142 --health-retries="5" 143 -e MYSQL_ROOT_PASSWORD="root" 144 -e MYSQL_DATABASE="test_db" 141 145 --entrypoint sh ${{ matrix.db-type }}:${{ matrix.db-version }} 142 -c "exec docker-entrypoint.sh mysqld${{ matrix.db- version != '5.5' && ' --default-authentication-plugin=mysql_native_password"' || '' }}146 -c "exec docker-entrypoint.sh mysqld${{ matrix.db-type == 'mysql' && contains( fromJSON('["7.2", "7.3"]'), matrix.php ) && ' --default-authentication-plugin=mysql_native_password' || '' }}" 143 147 144 148 steps: -
trunk/.github/workflows/phpunit-tests.yml
r59168 r59280 48 48 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] 49 49 db-type: [ 'mysql' ] 50 db-version: [ '5.7', '8.0', '8. 1', '8.2', '8.3' ]50 db-version: [ '5.7', '8.0', '8.4' ] 51 51 tests-domain: [ 'example.org' ] 52 52 multisite: [ false, true ] -
trunk/.github/workflows/reusable-upgrade-testing.yml
r58789 r59280 59 59 ports: 60 60 - 3306 61 options: --health-cmd="mysqladmin ping" --health-interval=30s --health-timeout=10s --health-retries=5 -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=test_db --entrypoint sh ${{ inputs.db-type }}:${{ inputs.db-version }} -c "exec docker-entrypoint.sh mysqld --default-authentication-plugin=mysql_native_password" 61 options: >- 62 --health-cmd="mysqladmin ping" 63 --health-interval="30s" 64 --health-timeout="10s" 65 --health-retries="5" 66 -e MYSQL_ROOT_PASSWORD="root" 67 -e MYSQL_DATABASE="test_db" 68 --entrypoint sh ${{ inputs.db-type }}:${{ inputs.db-version }} 69 -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 62 71 63 72 steps: -
trunk/.github/workflows/upgrade-testing.yml
r59276 r59280 46 46 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] 47 47 db-type: [ 'mysql' ] 48 db-version: [ '5.7', '8.0' ]48 db-version: [ '5.7', '8.0', '8.4' ] 49 49 wp: [ '6.0', '6.1', '6.2', '6.3', '6.4', '6.5', '6.6', '6.7-RC1' ] 50 50 multisite: [ false, true ] 51 52 exclude: 53 - php: '7.2' 54 db-version: '8.4' 55 - php: '7.3' 56 db-version: '8.4' 51 57 with: 52 58 os: ${{ matrix.os }} … … 69 75 php: [ '7.2', '7.3', '7.4' ] 70 76 db-type: [ 'mysql' ] 71 db-version: [ '5.7', '8.0' ]77 db-version: [ '5.7', '8.0', '8.4' ] 72 78 wp: [ '5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9' ] 73 79 multisite: [ false, true ] 80 81 exclude: 82 - php: '7.2' 83 db-version: '8.4' 84 - php: '7.3' 85 db-version: '8.4' 74 86 with: 75 87 os: ${{ matrix.os }} … … 96 108 php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ] 97 109 db-type: [ 'mysql' ] 98 db-version: [ '5.7', '8.0' ]110 db-version: [ '5.7', '8.0', '8.4' ] 99 111 wp: [ '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9' ] 100 112 multisite: [ false, true ] … … 119 131 php: [ '7.2', '7.3', '7.4' ] 120 132 db-type: [ 'mysql' ] 121 db-version: [ '5.7', '8.0' ]133 db-version: [ '5.7', '8.0', '8.4' ] 122 134 wp: [ '4.1', '4.2', '4.3', '4.4', '4.5', '4.6', '4.7', '4.8', '4.9' ] 123 135 multisite: [ false, true ] 136 137 exclude: 138 - php: '7.2' 139 db-version: '8.4' 140 - php: '7.3' 141 db-version: '8.4' 124 142 with: 125 143 os: ${{ matrix.os }} … … 146 164 php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ] 147 165 db-type: [ 'mysql' ] 148 db-version: [ '5.7', '8.0' ]166 db-version: [ '5.7', '8.0', '8.4' ] 149 167 wp: [ '4.1', '4.2', '4.3', '4.4', '4.5' ] 150 168 multisite: [ false, true ] -
trunk/.version-support-mysql.json
r59275 r59280 1 1 { 2 2 "6-8": [ 3 "8.3", 4 "8.2", 5 "8.1", 3 "8.4", 6 4 "8.0", 7 5 "5.7", … … 10 8 ], 11 9 "6-7": [ 12 "8.3", 13 "8.2", 14 "8.1", 10 "8.4", 15 11 "8.0", 16 12 "5.7",
Note: See TracChangeset
for help on using the changeset viewer.