Skip to content

Commit

Permalink
build: made multi-job in Linux build script less aggressive
Browse files Browse the repository at this point in the history
  • Loading branch information
sowle committed Nov 24, 2021
1 parent 4db29d3 commit d8fdb73
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions utils/build_script_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,18 @@ if [ $? -ne 0 ]; then
exit 1
fi

make -j daemon Zano;
make -j2 daemon simplewallet connectivity_tool
if [ $? -ne 0 ]; then
echo "Failed to make!"
exit 1
fi

make -j simplewallet;
make -j1 Zano
if [ $? -ne 0 ]; then
echo "Failed to make!"
exit 1
fi

make -j connectivity_tool;
if [ $? -ne 0 ]; then
echo "Failed to make!"
exit 1
fi



read version_str <<< $(./src/zanod --version | awk '/^Zano/ { print $2 }')
version_str=${version_str}
Expand Down

0 comments on commit d8fdb73

Please sign in to comment.