fix(ci): use the pinned Julia 1.11.5 in the ABI-FFI gate#175
Merged
Conversation
#174's Julia install pointed $GITHUB_PATH at /tmp/julia-1.11.5-linux-x86_64/bin, but the official tarball extracts to julia-1.11.5/. That path never existed, so the gate silently ran on the runner's pre-installed Julia and the version pin was a no-op — harmless today, but wasteful and not reproducible (it would break if the runner image ever drops Julia). Point $GITHUB_PATH at /tmp/julia-1.11.5/bin, and echo `julia --version` in the gate step so the CI log shows the pinned 1.11.5 is actually on PATH. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JdqVWGSSv36Ph8ZWvizGMp
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
Follow-up to #174. That PR's
Install Juliastep pointed$GITHUB_PATHat/tmp/julia-1.11.5-linux-x86_64/bin, but the official Julia tarball extracts tojulia-1.11.5/. The path never existed, so theABI ↔ FFI structural conformancegate silently ran on the runner's pre-installed Julia and the 1.11.5 pin was a no-op — green today, but wasteful (a ~150 MB download that's never used) and not reproducible (it would break if the runner image ever drops Julia).Changes
.github/workflows/abi-ffi-gate.yml$GITHUB_PATH→/tmp/julia-1.11.5/bin(the actual extracted directory), so the pinned Julia is the one onPATH.julia --versionechoed in the gate step, so the CI log shows the pin is in effect (and any future regression is visible).RSR Quality Checklist
Required
OK — 24 ABI functions exported, 8 result codes match)unsafeblocks — n/a.envfilesAs Applicable
Testing
The extracted directory name was confirmed directly:
tar -tzf julia-1.11.5-linux-x86_64.tar.gz | head -1→julia-1.11.5/, and/tmp/julia-1.11.5/bin/juliais the real binary. The gate itself is unchanged from #174 and still reportsABI-FFI GATE: OK (verisimiser) — 24 ABI functions exported, 8 result codes match.Screenshots
n/a (workflow only)
🤖 Generated with Claude Code
Generated by Claude Code