Skip to content

Commit 74e1852

Browse files
committed
Lock MySQL Docker image to 8.0.28.
There may be a regression in 8.0.29 that's breaking the tests and needs to be investigated further.
1 parent b1ca5af commit 74e1852

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci/docker-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ PORT=$2
2424
OMIT_FEATURES=$3
2525
MYSQL_EXTRA=
2626

27-
if [ "$IMAGE" == "mysql:8.0" ]; then
27+
if [ "$IMAGE" == "mysql:8.0.28" ]; then
2828
MYSQL_EXTRA='--default-authentication-plugin=mysql_native_password'
2929
fi
3030
if [[ "$IMAGE" == mariadb* ]]; then

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ jobs:
223223
image: 'mysql:5.7'
224224
unsupportedFeatures: 'CachingSha2Password,Ed25519,QueryAttributes,Tls11,Tls13,UuidToBin'
225225
'MySQL 8.0':
226-
image: 'mysql:8.0'
226+
image: 'mysql:8.0.28'
227227
unsupportedFeatures: 'Ed25519,Tls11,ZeroDateTime'
228228
'MariaDB 10.4':
229229
image: 'mariadb:10.4'

0 commit comments

Comments
 (0)