mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
fix(ci): pin MySQL version in the correct place
This commit is contained in:
parent
5466826d91
commit
7fd324d337
2 changed files with 4 additions and 4 deletions
4
.github/workflows/sqlx.yml
vendored
4
.github/workflows/sqlx.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue