diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-27 22:36:59 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-30 23:55:00 -0700 |
commit | 0da639298c8d2d956c76d8beb9f08c54c87cfec7 (patch) | |
tree | 3977386543ff4620d4cd6ac3b3778abdc26c2316 /etc | |
parent | 9347f86939f3dea9d8d8ea723c238cd4f8c518a6 (diff) | |
download | spack-0da639298c8d2d956c76d8beb9f08c54c87cfec7.tar.gz spack-0da639298c8d2d956c76d8beb9f08c54c87cfec7.tar.bz2 spack-0da639298c8d2d956c76d8beb9f08c54c87cfec7.tar.xz spack-0da639298c8d2d956c76d8beb9f08c54c87cfec7.zip |
Move temp directory configuration to config.yaml
- Moved temp finding logic to spack.stage
- Updated stage tests
- Added tests for new path substaitution of $user, $spack, $tempdir
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/config.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/spack/defaults/config.yaml b/etc/spack/defaults/config.yaml index 5ce60049ce..6a749b5f6d 100644 --- a/etc/spack/defaults/config.yaml +++ b/etc/spack/defaults/config.yaml @@ -31,13 +31,13 @@ config: # You can use $tempdir to refer to the system default temp directory # (as returned by tempfile.gettempdir()). # - # A value of $local indicates that Spack should run builds directly - # inside its install directory without staging them in temporary space. + # A value of $spack/var/spack/stage indicates that Spack should run + # builds directly inside its install directory without staging them in + # temporary space. build_stage: - - /usr/workspace/*/%u - $tempdir - - /nfs/tmp2/%u - - $local + - /nfs/tmp2/$user + - $spack/var/spack/stage # Cache directory already downloaded source tarballs and archived |