Disable parallel builds for bamutil (#4430)

I've had non-repeatable failures in my CI runs on all three clusters
at the bamutil's step.  In each case there are .o or .so files that
are corrupt or truncated.

I suspect that the homebrewed bamutil Makefile scheme doesn't actually
support parallel builds.
This commit is contained in:
George Hartzell 2017-06-05 12:14:49 -07:00 committed by Adam J. Stewart
parent bfb45ba1ce
commit 6b9d485e06

View File

@ -40,6 +40,8 @@ class Bamutil(MakefilePackage):
# https://github.com/statgen/libStatGen/issues/9
patch('libstatgen-issue-9.patch', when='@1.0.13:')
parallel = False
@property
def install_targets(self):
return ['install', 'INSTALLDIR={0}'.format(self.prefix.bin)]