Merged
Conversation
The actions/cache 'path' is repo-root relative, but the Elixir binding lives at prqlc/bindings/elixir. Caching elixir/deps and elixir/_build matches no files, so every run logs 'Path Validation Error' and skips restore/save. The mismatch was introduced in #3683 when the directory was renamed; the working-directory was updated but the cache paths were only partially renamed.
This was referenced Apr 26, 2026
Closed
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.
The
actions/cachepaths intest-elixir.yamlpoint at directories that don't exist in this repo, so the cache silently never restores or saves. The Elixir job redownloads and recompiles dependencies from scratch on every run.Evidence
The latest
testsrun onmain(run 24934608816, job 73017930250) shows both cache steps emitting:…and at job end:
actions/cachepaths are repo-root relative, not relative to the job'sworking-directory. The Elixir binding lives atprqlc/bindings/elixir/, sodepsand_buildresolve toprqlc/bindings/elixir/depsandprqlc/bindings/elixir/_build, notelixir/depsandelixir/_build.Origin
The mismatch was introduced in #3683 (the directory reorg from
bindings/prql-elixir→prqlc/bindings/elixir): theworking-directorywas updated, but the cachepathwas only partially renamed (prql-elixir/deps→elixir/deps). The path was wrong before that commit too —prql-elixir/depswas missing thebindings/prefix — so the cache has likely never worked.Verification
This is a CI workflow change rather than testable code. After merge, a
testsrun onmainshould show:Path Validation Errorwarning at the end of the Elixir job.Cache not found, andmix deps.get/mix compileskipping the work.