Skip to content
Snippets Groups Projects
Commit 14d3f802 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

updated build-all to avoid parallel build on arm boxes

parent 0d32d8d3
No related branches found
No related tags found
No related merge requests found
Pipeline #3340 passed
......@@ -6,7 +6,12 @@ if [[ "$*" =~ "--debug" ]]; then
SCONSDEBUG=" debug=1 "
fi
scons $SCONSDEBUG -j 3
if [[ $(uname -m) == 'armv7l' ]]; then
scons $SCONSDEBUG
else
scons $SCONSDEBUG -j 3
fi
exit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment