-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ci] ignore certificates for kitware apt channel in CUDA jobs (fixes #4646) #4648
Conversation
Looks like #4645 (Eigen being unavailable from GitLab) has not been addressed by GitLab yet 🙃
https://github.com/microsoft/LightGBM/pull/4648/checks?check_run_id=3792108299 |
.gitmodules
Outdated
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
absolutely not recommending this change, as I don't think LightGBM should depend on unofficial sources for submodules.
Just doing this (following the suggestion from https://gitlab.com/libeigen/eigen/-/issues/2336#note_693188875) to at least be able to test if the changes in this PR do resolve the CUDA issues
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
url = https://gitlab.com/cantonios/eigen.git | |
url = https://gitlab.com/libeigen/eigen.git |
Seems from https://gitlab.com/libeigen/eigen/-/issues/2336#note_694339283 that the main Eigen repo is back.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you very much for working on this!
Looks like everything is working now 🎉
Thanks! I hope we'll be able to revert this our PR soon. |
This pull request has been automatically locked since there has not been any recent activity since it was closed. To start a new related discussion, open a new issue at https://github.com/microsoft/LightGBM/issues including a reference to this. |
Attempts to fix the blocking CI issue on CUDA jobs (#4646). See that issue for more investigation.
Basically, I believe that the
nvidia/cuda
images (last updated 9/20/2021) are using a client somewhere that is using one or more certificates relying on the Let's Encrypt root certificate that expired 9/30/2021.This PR patches
.ci/setup.sh
to say "just trust the kitware apt repository and don't check it's certificate" for CUDA jobs.Notes for Reviewers
I'm going to open an issue later today on the issues page for the
nvidia/cuda
images, asking them to update their images. But at least for now, I hope this PR will unblock LightGBM's CI.