We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e07b8e4 commit fcc1e83Copy full SHA for fcc1e83
.github/workflows/sqlx.yml
@@ -302,7 +302,9 @@ jobs:
302
docker-compose -f tests/docker-compose.yml run -d -p 3306:3306 --name mysql_${{ matrix.mysql }}_client_ssl mysql_${{ matrix.mysql }}_client_ssl
303
sleep 60
304
305
+ # MySQL 5.7 supports TLS but not TLSv1.3 as required by RusTLS.
306
- uses: actions-rs/cargo@v1
307
+ if: ${{ !(matrix.mysql == '5_7' && matrix.tls == 'rustls') }}
308
with:
309
command: test
310
args: >
0 commit comments