[whizard] Disable parallel builds to avoid race condition (#19270)

This commit is contained in:
Thomas Madlener 2020-10-12 17:07:21 +02:00 committed by GitHub
parent 2399c2e78d
commit bead81fab5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,6 +77,10 @@ class Whizard(AutotoolsPackage):
conflicts('%intel@:17', conflicts('%intel@:17',
msg='The fortran compiler needs to support Fortran 2008. For more detailed information see https://whizard.hepforge.org/compilers.html') msg='The fortran compiler needs to support Fortran 2008. For more detailed information see https://whizard.hepforge.org/compilers.html')
# Trying to build in parallel leads to a race condition at the build step.
# See: https://github.com/key4hep/k4-spack/issues/71
parallel = False
def setup_build_environment(self, env): def setup_build_environment(self, env):
# whizard uses the compiler during runtime, # whizard uses the compiler during runtime,
# and seems incompatible with # and seems incompatible with