Fix oneAPI CI failure on Julia 1.10 due to stale deps Manifest#408
Merged
ChrisRackauckas merged 1 commit intoSciML:masterfrom Feb 21, 2026
Merged
Conversation
oneAPI's build_ci.jl calls Pkg.activate/instantiate on its deps/ directory in the shared depot cache. A Manifest.toml generated by Julia 1.12.5 persists across runs and causes Pkg.instantiate() to fail on Julia 1.10, since it references stdlib packages (OpenSSL_jll) at paths that don't exist in 1.10. Remove the stale Manifest.toml before including build_ci.jl. Also add `rm test/Manifest.toml` to match CUDA/AMDGPU/Metal backends. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
deps/Manifest.tomlfrom oneAPI's depot cache before runningbuild_ci.jlin CIrm test/Manifest.tomlto oneAPI CI block to match CUDA/AMDGPU/Metal backendsProblem
The oneAPI CI on Julia 1.10 fails with:
oneAPI's
build_ci.jlcallsPkg.activate(@__DIR__)+Pkg.instantiate()on itsdeps/directory within the shared Julia depot cache. When a previous CI run on Julia 1.12.5 generates aManifest.tomlthere, it persists and causesPkg.instantiate()to fail on Julia 1.10 sinceOpenSSL_jllwas added as a stdlib in 1.11+ and the manifest references paths that don't exist in 1.10.Fix
Delete the stale
Manifest.tomlbefore includingbuild_ci.jl, soPkg.instantiate()always resolves fresh for the running Julia version.Test plan
🤖 Generated with Claude Code