Reuse concretization by default (#30396)

* Enable reuse by default in Spack
* Update documentation to match new default
* Configure pipelines not to reuse software
This commit is contained in:
Massimiliano Culpo
2022-05-13 18:11:10 +02:00
committed by GitHub
parent faa277778e
commit d900ac2003
10 changed files with 43 additions and 27 deletions

View File

@@ -14,7 +14,7 @@ concretizer:
# concretizing specs. If `true`, we'll try to use as many installs/binaries
# as possible, rather than building. If `false`, we'll always give you a fresh
# concretization.
reuse: false
reuse: true
# Options that tune which targets are considered for concretization. The
# concretization process is very sensitive to the number targets, and the time
# needed to reach a solution increases noticeably with the number of targets
@@ -27,4 +27,4 @@ concretizer:
# If "false" allow targets that are incompatible with the current host (for
# instance concretize with target "icelake" while running on "haswell").
# If "true" only allow targets that are compatible with the host.
host_compatible: false
host_compatible: true