Skip to content

Commit 8677264

Browse files
committed
Add the exception for mysql 5.7 not supporting compatible TLS version with RusTLS
1 parent 511e96f commit 8677264

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/sqlx.yml

+2
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,9 @@ jobs:
309309
docker-compose -f tests/docker-compose.yml run -d -p 3306:3306 --name mysql_${{ matrix.mysql }}_client_ssl mysql_${{ matrix.mysql }}_client_ssl
310310
sleep 60
311311
312+
# MySQL 5.7 supports TLS but not TLSv1.3 as required by RusTLS.
312313
- uses: actions-rs/cargo@v1
314+
if: ${{ !(matrix.mysql == '5_7' && matrix.tls == 'rustls') }}
313315
with:
314316
command: test
315317
args: >

0 commit comments

Comments
 (0)