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