Skip to content

Commit fcc1e83

Browse files
committed
Add the exception for mysql 5.7 not supporting compatible TLS version with RusTLS
1 parent e07b8e4 commit fcc1e83

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
@@ -302,7 +302,9 @@ jobs:
302302
docker-compose -f tests/docker-compose.yml run -d -p 3306:3306 --name mysql_${{ matrix.mysql }}_client_ssl mysql_${{ matrix.mysql }}_client_ssl
303303
sleep 60
304304
305+
# MySQL 5.7 supports TLS but not TLSv1.3 as required by RusTLS.
305306
- uses: actions-rs/cargo@v1
307+
if: ${{ !(matrix.mysql == '5_7' && matrix.tls == 'rustls') }}
306308
with:
307309
command: test
308310
args: >

0 commit comments

Comments
 (0)