Skip to content

Commit 3b8a324

Browse files
committed
Add the exception for mysql 5.7 not supporting compatible TLS version with RusTLS
1 parent 04cb8eb commit 3b8a324

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/sqlx.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,9 @@ jobs:
311311
docker-compose -f tests/docker-compose.yml run -d -p 3306:3306 --name mysql_${{ matrix.mysql }}_client_ssl mysql_${{ matrix.mysql }}_client_ssl
312312
sleep 60
313313
314+
# MySQL 5.7 supports TLS but not TLSv1.3 as required by RusTLS.
314315
- uses: actions-rs/cargo@v1
316+
if: ${{ !(matrix.mysql == '5_7' && matrix.tls == 'rustls') }}
315317
with:
316318
command: test
317319
args: >

0 commit comments

Comments
 (0)