fix(ci): pin MySQL version in the correct place

This commit is contained in:
Austin Bonander 2022-02-11 12:55:23 -08:00
parent 5466826d91
commit 7fd324d337
No known key found for this signature in database
GPG key ID: 461F7F0F45383F2B
2 changed files with 4 additions and 4 deletions

View file

@ -240,9 +240,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
# FIXME: 8.0.28 introduced a regression in our type tests: https://github.com/launchbadge/sqlx/issues/1664
# The MySQL devs agreed that it was a regression and that it will be fixed in 8.0.29
mysql: [8.0.27, 5_6]
mysql: [8, 5_6]
runtime: [async-std, tokio, actix]
tls: [native-tls, rustls]
needs: check

View file

@ -7,7 +7,9 @@ services:
#
mysql_8:
image: mysql:8.0
# FIXME: 8.0.28 introduced a regression in our type tests: https://github.com/launchbadge/sqlx/issues/1664
# The MySQL devs agreed that it was a regression and that it will be fixed in 8.0.29
image: mysql:8.0.27
volumes:
- "./mysql/setup.sql:/docker-entrypoint-initdb.d/setup.sql"
ports: