Skip to content

[anneal] Use Lean artifact cache; use local-filesystem git dep#3304

Merged
joshlf merged 1 commit intomainfrom
Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr
Apr 21, 2026
Merged

[anneal] Use Lean artifact cache; use local-filesystem git dep#3304
joshlf merged 1 commit intomainfrom
Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr

Conversation

@joshlf
Copy link
Copy Markdown
Member

@joshlf joshlf commented Apr 20, 2026

  • Store build artifacts in a user-global Lean content-addressed artifact
    cache, populating it during setup.
  • Specify the dependency on the Aeneas Lean library as follows:
    • During setup, initialize the Aeneas Lean library as a git repo
    • During generate/verify, specify the dependency as a git
      dependency on a local filesystem path

Prior to this change, we specified the dependency as a non-git
filesystem dep, which had the effect of causing Lean to think it could
mutate the user-global directory, causing races when multiple anneal
commands were run in parallel.

Release 0.1.0-alpha.20


Latest Update: v7 — Compare vs v6

📚 Full Patch History

Links show the diff between the row version and the column version.

Version v6 v5 v4 v3 v2 v1 Base
v7 vs v6 vs v5 vs v4 vs v3 vs v2 vs v1 vs Base
v6 vs v5 vs v4 vs v3 vs v2 vs v1 vs Base
v5 vs v4 vs v3 vs v2 vs v1 vs Base
v4 vs v3 vs v2 vs v1 vs Base
v3 vs v2 vs v1 vs Base
v2 vs v1 vs Base
v1 vs Base
⬇️ Download this PR

Branch

git fetch origin refs/heads/Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr && git checkout -b pr-Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr FETCH_HEAD

Checkout

git fetch origin refs/heads/Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr && git checkout FETCH_HEAD

Cherry Pick

git fetch origin refs/heads/Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr && git cherry-pick FETCH_HEAD

Pull

git pull origin refs/heads/Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr

Stacked PRs enabled by GHerrit.

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Optimistically Approved: Changes appear scoped. Final strict verification will occur in the Merge Queue.

@joshlf joshlf force-pushed the Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr branch from 416affa to 0a31816 Compare April 20, 2026 21:36
Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Optimistically Approved: Changes appear scoped. Final strict verification will occur in the Merge Queue.

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Apr 20, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 91.88%. Comparing base (3a99d75) to head (69e77a5).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #3304   +/-   ##
=======================================
  Coverage   91.88%   91.88%           
=======================================
  Files          20       20           
  Lines        6076     6076           
=======================================
  Hits         5583     5583           
  Misses        493      493           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@joshlf joshlf force-pushed the Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr branch from 0a31816 to 767958e Compare April 20, 2026 21:41
Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Optimistically Approved: Changes appear scoped. Final strict verification will occur in the Merge Queue.

@joshlf joshlf force-pushed the Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr branch from 767958e to f1402a9 Compare April 20, 2026 21:55
Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Optimistically Approved: Changes appear scoped. Final strict verification will occur in the Merge Queue.

@joshlf joshlf force-pushed the Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr branch from f1402a9 to a402330 Compare April 20, 2026 22:00
Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Optimistically Approved: Changes appear scoped. Final strict verification will occur in the Merge Queue.

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Optimistically Approved: Changes appear scoped. Final strict verification will occur in the Merge Queue.

- Store build artifacts in a user-global Lean content-addressed artifact
  cache, populating it during `setup`.
- Specify the dependency on the Aeneas Lean library as follows:
  - During `setup`, initialize the Aeneas Lean library as a git repo
  - During `generate`/`verify`, specify the dependency as a git
    dependency on a local filesystem path

Prior to this change, we specified the dependency as a non-git
filesystem dep, which had the effect of causing Lean to think it could
mutate the user-global directory, causing races when multiple `anneal`
commands were run in parallel.

Release 0.1.0-alpha.20

gherrit-pr-id: Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr
@joshlf joshlf force-pushed the Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr branch from ed6b041 to 69e77a5 Compare April 20, 2026 23:21
@joshlf joshlf enabled auto-merge April 20, 2026 23:21
Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Optimistically Approved: Changes appear scoped. Final strict verification will occur in the Merge Queue.

@joshlf joshlf added this pull request to the merge queue Apr 20, 2026
Merged via the queue into main with commit d410c16 Apr 21, 2026
134 checks passed
@joshlf joshlf deleted the Gyo2pqvhru3x4cyrj6bhrnjtx7gamwkfr branch April 21, 2026 00:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants