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 04cb8eb commit 3b8a324Copy full SHA for 3b8a324
.github/workflows/sqlx.yml
@@ -311,7 +311,9 @@ jobs:
311
docker-compose -f tests/docker-compose.yml run -d -p 3306:3306 --name mysql_${{ matrix.mysql }}_client_ssl mysql_${{ matrix.mysql }}_client_ssl
312
sleep 60
313
314
+ # MySQL 5.7 supports TLS but not TLSv1.3 as required by RusTLS.
315
- uses: actions-rs/cargo@v1
316
+ if: ${{ !(matrix.mysql == '5_7' && matrix.tls == 'rustls') }}
317
with:
318
command: test
319
args: >
0 commit comments