Skip to content
Snippets Groups Projects
Commit 36052040 authored by Eric Müller's avatar Eric Müller :mountain_bicyclist:
Browse files

Build(pynn-brainscales): Keep building after the initial fail

Let's try to find all build problems in one try… keep building after
the initial error to find additional ones.
parent 1a1461a0
No related branches found
No related tags found
3 merge requests!109create new experimental release,!108create new experimental release,!105Fix pynn-brainscales build 2nd try
...@@ -127,3 +127,9 @@ class PynnBrainscales(WafPackage): ...@@ -127,3 +127,9 @@ class PynnBrainscales(WafPackage):
args += self.configure_args() args += self.configure_args()
self.waf('configure', *args) self.waf('configure', *args)
def build_args(self):
# keep going after fails
args = ['--keep']
return args
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment