Skip to content
Snippets Groups Projects
Commit 4c33a512 authored by Nicolas Richart's avatar Nicolas Richart
Browse files

Adding a deconcretize possibility

parent 7a22feea
No related branches found
No related tags found
No related merge requests found
Pipeline #204207 canceled
...@@ -149,6 +149,15 @@ spack:concretize: ...@@ -149,6 +149,15 @@ spack:concretize:
- .parallel_job - .parallel_job
script: script:
- source ci/stack_env.sh - source ci/stack_env.sh
- |
if [ -e ${CI_DATA_ST}/deconcretize_${stack}_${environment}_${SQUASHFS_ID} ];
then
while read -r spec
do
echo "Deconcretizing ${spec}"
${STACK_LOCATION}/spack/bin/spack --color=always -e ${environment} deconcretize --all ${spec}
done <<< $(cat ${CI_DATA_ST}/deconcretize_${stack}_${environment}_${SQUASHFS_ID})
fi
- ${STACK_LOCATION}/spack/bin/spack -e ${environment} - ${STACK_LOCATION}/spack/bin/spack -e ${environment}
config blame | tee config-${environment}-${stack}.log config blame | tee config-${environment}-${stack}.log
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment