actions take 54

This commit is contained in:
Jay Lee
2020-12-04 05:12:19 -05:00
parent 78485ae4e9
commit 939840b702

View File

@@ -101,6 +101,6 @@ jobs:
this_openssl=${openssl_line[1]}
$python tools/a_atleast_b.py $this_openssl $MIN_OPENSSL_VERSION
# Check TLS version in use
$gam version extended | grep TLSv1\.[23]; fi # Builds should default TLS 1.2 or 1.3 to Google
GAM_TLS_MIN_VERSION=TLSv1_2 $gam version extended location tls-v1-0.badssl.com:1010; [[ $? == 3 ]]; # expect fail since server doesn't support our TLS version
$gam version extended | grep TLSv1\.[23] # Builds should default TLS 1.2 or 1.3 to Google
GAM_TLS_MIN_VERSION=TLSv1_2 $gam version extended location tls-v1-0.badssl.com:1010; [[ $? == 3 ]] # expect fail since server doesn't support our TLS version