-
Notifications
You must be signed in to change notification settings - Fork 767
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
Fix LLVM repo keys #560
Fix LLVM repo keys #560
Conversation
@johnwlambert Please review this :) |
Looks good, thanks @ProfFan for adding this fix. Would you mind adding a few more inline comments before we merge, just to increase the readability? Perhaps something like # We need to use a keyserver because.... we use this keyserver because...
# matrix.version 9 represents ...
# 15CF4D18AF4F7421 is the hash for ...
if [ "${{ matrix.compiler }}" = "clang" ] && [ "${{ matrix.version }}" = "9" ]; then
gpg --keyserver pool.sks-keyservers.net --recv-key 15CF4D18AF4F7421
gpg -a --export 15CF4D18AF4F7421 | sudo apt-key add - |
I think as this is under clang if it's pretty self-explanatory... |
Please be responsive to the reviewer's comment, rather than dismissive. |
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.
Please implement John's comment
@johnwlambert @dellaert done |
@dellaert Please accept :) |
Did you actually read John’s comment? Maybe I’m just missing where you explain why we need a key server etc as he asked… |
Hi @ProfFan, we need this to merge the SFM Example BAL updates, I think a brief comment about why we needed the keyserver would help. You could also consider making that hash key a bash variable, so that is a bit easier to read |
@dellaert I think I have addressed @johnwlambert 's comments, could you approve this PR so we can merge? |
This should fix the problem in https://github.com/borglab/gtsam/pull/556/checks?check_run_id=1234393111