Changeset 59280 for trunk/.github/workflows/install-testing.yml
- Timestamp:
- 10/23/2024 12:13:07 AM (6 months ago)
- File:
-
- 1 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:
Note: See TracChangeset
for help on using the changeset viewer.