Unverified Commit 10e0edc4 authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[ci] ignore certificates for kitware apt channel in CUDA jobs (fixes #4646) (#4648)

* [ci] ignore certificates for kitware apt channel in CUDA jobs (fixes #4646)

* try building from a fork

* Update .gitmodules
parent a77260f0
...@@ -98,9 +98,15 @@ else # Linux ...@@ -98,9 +98,15 @@ else # Linux
clang \ clang \
libomp-dev libomp-dev
fi 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-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 \ apt-get install --no-install-recommends -y \
cmake cmake
else else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment