Fix galois download: use updated UTK URL#208
Open
zardus wants to merge 1 commit into
Open
Conversation
The old URL (web.eecs.utk.edu/~plank/...) times out, breaking CI. The same file is still hosted at the updated path (~jplank/...). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Updates the galois installer download URL to a currently reachable UTK hosting path so the toolcheck (galois) CI job can fetch the tarball reliably again.
Changes:
- Switch galois tarball URL from
~plank/...to~jplank/...in the installer script.
Comments suppressed due to low confidence (1)
galois/install:8
- This install script downloads a third-party tarball via
wgetover HTTPS fromweb.eecs.utk.eduand immediately extracts it and runsmakeon its contents, without any checksum, signature, or other integrity verification. If the remote file or hosting infrastructure is compromised (or the file is replaced), an attacker can supply a malicious archive whose build steps execute arbitrary code in your CI or developer environments. To mitigate this, vendor the source into the repo or a trusted mirror, or at minimum pin and verify the download with a strong checksum or signature before extracting and building it.
wget https://web.eecs.utk.edu/~jplank/plank/papers/CS-07-593/galois.tar
mkdir -p galois
cd galois
tar xvf ../galois.tar
make
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
~plank/...) times out, breaking thetoolcheck (galois)CI job~jplank/...)~plank→~jplankTest plan
toolcheck (galois)should pass with the updated URL🤖 Generated with Claude Code