From a1dd8fc883d713b4a25a34e8867b6f17b0115d2e Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Mon, 6 Apr 2020 17:36:09 -0700 Subject: [PATCH] Ignore SSL errors on CI. --- litex_setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/litex_setup.py b/litex_setup.py index b7239ccf..61a556a8 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -85,6 +85,10 @@ def sifive_riscv_download(): assert not os.path.exists(dst), dst os.symlink(src, dst) +if os.environ.get('TRAVIS', '') == 'true': + # Ignore `ssl.SSLCertVerificationError` on CI. + import ssl + ssl._create_default_https_context = ssl._create_unverified_context if len(sys.argv) < 2: print("Available commands:") -- 2.30.2