From 0dc5b972961e3a4461c1bc8e3aec1cca316186bc Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 4 Oct 2021 09:14:31 -0500 Subject: [PATCH 1/3] [ci] ignore certificates for kitware apt channel in CUDA jobs (fixes #4646) --- .ci/setup.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.ci/setup.sh b/.ci/setup.sh index 792972fbfc2d..ef84a51cd587 100755 --- a/.ci/setup.sh +++ b/.ci/setup.sh @@ -98,9 +98,15 @@ else # Linux clang \ libomp-dev fi - curl -sL https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add - + curl \ + -s \ + -L \ + --insecure \ + https://apt.kitware.com/keys/kitware-archive-latest.asc \ + | apt-key add - apt-add-repository "deb https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main" -y - apt-get update + apt-get --allow-unauthenticated upgrade -y + apt-get --allow-unauthenticated update -y apt-get install --no-install-recommends -y \ cmake else From abdfd12356e241549b6bc1cfe6eb14a28c82205e Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 4 Oct 2021 09:34:18 -0500 Subject: [PATCH 2/3] try building from a fork --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 687fa4db9bf4..0d0d41356576 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,7 @@ url = https://github.com/boostorg/compute [submodule "eigen"] path = external_libs/eigen - url = https://gitlab.com/libeigen/eigen.git + url = https://gitlab.com/cantonios/eigen.git [submodule "external_libs/fmt"] path = external_libs/fmt url = https://github.com/fmtlib/fmt.git From 861d17de05ee9ccc976d36215ec4ea2ac3cf9968 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 4 Oct 2021 16:39:31 -0500 Subject: [PATCH 3/3] Update .gitmodules --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 0d0d41356576..687fa4db9bf4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,7 @@ url = https://github.com/boostorg/compute [submodule "eigen"] path = external_libs/eigen - url = https://gitlab.com/cantonios/eigen.git + url = https://gitlab.com/libeigen/eigen.git [submodule "external_libs/fmt"] path = external_libs/fmt url = https://github.com/fmtlib/fmt.git