summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2020-03-17 09:42:41 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2020-03-17 09:42:41 +0000
commit153199aeb40edbfc6fb355a38b85c495635844cb (patch)
tree30fcfa61cd6b60198719da04558ba75bd5e4bb03
parent8621bdda58c6fb9e6c37e3abad40ffdb4271bccd (diff)
downloadlibgit2-153199aeb40edbfc6fb355a38b85c495635844cb.tar.gz
ci: don't use --insecure
mbedTLS has fixed their certificate. 🎉
-rw-r--r--azure-pipelines/docker/bionic2
-rw-r--r--azure-pipelines/docker/xenial2
2 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines/docker/bionic b/azure-pipelines/docker/bionic
index 2b95b0c70..65a14063a 100644
--- a/azure-pipelines/docker/bionic
+++ b/azure-pipelines/docker/bionic
@@ -25,7 +25,7 @@ RUN apt-get update && \
FROM apt AS mbedtls
RUN cd /tmp && \
- curl --insecure --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz | \
+ curl --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz | \
tar -xz && \
cd mbedtls-2.16.2 && \
scripts/config.pl set MBEDTLS_MD4_C 1 && \
diff --git a/azure-pipelines/docker/xenial b/azure-pipelines/docker/xenial
index ce91dc1a5..bfb96d9db 100644
--- a/azure-pipelines/docker/xenial
+++ b/azure-pipelines/docker/xenial
@@ -29,7 +29,7 @@ RUN apt-get update && \
FROM apt AS mbedtls
RUN cd /tmp && \
- curl --insecure --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz | \
+ curl --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz | \
tar -xz && \
cd mbedtls-2.16.2 && \
scripts/config.pl set MBEDTLS_MD4_C 1 && \