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

Correcting multiple definitions of compilers

parent 729ce793
No related branches found
No related tags found
No related merge requests found
Pipeline #179931 failed
......@@ -153,10 +153,13 @@ spack:install_compilers:
cat compiler_definitions.yaml
- |
while read -r compiler
while read -r compiler_hash
do
spack/bin/spack compiler find --scope system $(spack/bin/spack location -i ${compiler})
done <<< $(echo "${COMPILER_LIST_SPECS}")
spack/bin/spack compiler find --scope system $(spack/bin/spack location -i /${compiler_hash})
done <<< $(echo "${hashes}")
- spack/bin/spack -e . config compilers
artifacts:
reports:
junit: spack-install.xml
......@@ -172,7 +175,7 @@ spack:concretize:
- .spack_cache
- .parallel_job
script:
- spack/bin/spack config blame definitions
- spack/bin/spack -e . config blame definitions
- spack/bin/spack -e . concretize
needs:
- job: spack:install_compilers
......
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