chore: restoreAllArtifacts = true for core (#10582)

This PR sets `restoreAllArtifacts = true` in the core build Lake
configuration file.
This commit is contained in:
Mac Malone 2025-09-26 23:30:21 -04:00 committed by GitHub
parent 0bf7741a3e
commit 05300f7b51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,6 +13,11 @@ defaultTargets = ["Init", "Std", "Lean", "Lake", "LakeMain", "Leanc"]
# The root of all the compiler output directories
buildDir = "${CMAKE_BINARY_DIR}"
# Ensure build artifacts end up in the build directory even when the Lake
# local artifact cache is enabled. This is necessary because subsequent stages
# will expect the previous stage's artifacts to be in the build directory.
restoreAllArtifacts = true
# The directory of Lean source files (i.e., `src`)
srcDir = "${LEAN_SOURCE_DIR}"