diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-05-13 18:11:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 09:11:10 -0700 |
commit | d900ac2003a39d1789ee62107e3fc2c6e2d8a78f (patch) | |
tree | e5cf98ba6de81865513e76615027e55a6b032400 /etc | |
parent | faa277778e290cb9815269034029cc777162e774 (diff) | |
download | spack-d900ac2003a39d1789ee62107e3fc2c6e2d8a78f.tar.gz spack-d900ac2003a39d1789ee62107e3fc2c6e2d8a78f.tar.bz2 spack-d900ac2003a39d1789ee62107e3fc2c6e2d8a78f.tar.xz spack-d900ac2003a39d1789ee62107e3fc2c6e2d8a78f.zip |
Reuse concretization by default (#30396)
* Enable reuse by default in Spack
* Update documentation to match new default
* Configure pipelines not to reuse software
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/concretizer.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/spack/defaults/concretizer.yaml b/etc/spack/defaults/concretizer.yaml index 2aadccd6cd..643107d3c0 100644 --- a/etc/spack/defaults/concretizer.yaml +++ b/etc/spack/defaults/concretizer.yaml @@ -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 |