aboutsummaryrefslogtreecommitdiff
path: root/.shippable.yml
diff options
context:
space:
mode:
Diffstat (limited to '.shippable.yml')
-rw-r--r--.shippable.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.shippable.yml b/.shippable.yml
index d45c14f9..8c6c8de3 100644
--- a/.shippable.yml
+++ b/.shippable.yml
@@ -14,7 +14,9 @@ build:
- export CROSS_COMPILE32="ccache arm-linux-gnueabihf-"
- export CROSS_COMPILE64="ccache aarch64-linux-gnu-"
- export CCACHE_DIR=${SHIPPABLE_BUILD_DIR}/.ccache
- - function _make() { make -j$(getconf _NPROCESSORS_ONLN) -s $* && ccache -s && ccache -z; }
+ # No parallel build ('make -j$(getconf _NPROCESSORS_ONLN)') due to:
+ # https://github.com/Shippable/support/issues/3953
+ - function _make() { make -s $* && ccache -s && ccache -z; }
- ccache -z
#