From 36052040759a75253871ded03b29378ce8f09b17 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Eric=20M=C3=BCller?= <mueller@kip.uni-heidelberg.de>
Date: Thu, 9 Jun 2022 14:07:02 +0200
Subject: [PATCH] Build(pynn-brainscales): Keep building after the initial fail
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Let's try to find all build problems in one try… keep building after
the initial error to find additional ones.
---
 packages/pynn-brainscales/package.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/packages/pynn-brainscales/package.py b/packages/pynn-brainscales/package.py
index c1d58889..d94cae21 100644
--- a/packages/pynn-brainscales/package.py
+++ b/packages/pynn-brainscales/package.py
@@ -127,3 +127,9 @@ class PynnBrainscales(WafPackage):
         args += self.configure_args()
 
         self.waf('configure', *args)
+
+    def build_args(self):
+        # keep going after fails
+        args = ['--keep']
+
+        return args
-- 
GitLab