From a8c78f4ee582adac672e253f4787a0a80c1cbaf5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 4 Jul 2016 13:41:42 +0100 Subject: [PATCH] Disable parallel builds to overcome intermittent build breaks due to GCC/make bug --- bamboo/env.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bamboo/env.sh b/bamboo/env.sh index 4ad5fd998..b370d24c9 100644 --- a/bamboo/env.sh +++ b/bamboo/env.sh @@ -1,4 +1,7 @@ #!/bin/bash -# ctest_parallel="no" +# Disable parallel builds in bamboo due to occasional failure +# GCC Parallel error: file not recognized: File truncated +# https://seiscode.iris.washington.edu/issues/587 +make_parallel="no"