-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d79479
commit bfa0ba7
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,9 +151,9 @@ jobs: | |
# Test environment chaining | ||
echo "Test environment chaining" | ||
spack stack create env --name chaintest --template empty --site macos.default --upstream $(realpath envs/${ENVNAME}/install) | ||
spack stack create env --name chaintest --template empty --site macos.default --upstream ${ENVDIR}/install | ||
# Retain config from upstream so we don't have to rebuild: | ||
cp -r $PWD/envs/${ENVNAME}/{site,common} $PWD/envs/chaintest/. | ||
cp -r ${ENVDIR}/{site,common} $PWD/envs/chaintest/. | ||
spack env activate ${PWD}/envs/chaintest | ||
spack add [email protected]%apple-clang | ||
spack concretize | tee envs/chaintest/log.concretize | ||
|