From 646ab610b9e3d636217da2d3d287bc8079234373 Mon Sep 17 00:00:00 2001 From: Morten Borup Petersen Date: Fri, 11 Oct 2024 14:26:50 +0200 Subject: [PATCH] reduce parallelism --- scripts/run-clang-tidy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-clang-tidy.sh b/scripts/run-clang-tidy.sh index 293ef869..89b27492 100755 --- a/scripts/run-clang-tidy.sh +++ b/scripts/run-clang-tidy.sh @@ -6,7 +6,7 @@ WORKDIR="$( cd $SCRIPTDIR/.. && pwd )" # Make compile_command.json rm -rf tmp && mkdir tmp && cmake -Btmp -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DSUBSTRAIT_CPP_ROUNDTRIP_TESTING=ON # Build substrait protobuf -pushd tmp/src/substrait/proto && make -j && popd || exit +pushd tmp/src/substrait/proto && make -j 2 && popd || exit # Build textplan grammar pushd tmp/src/substrait/textplan/parser/grammar && make -j antlr4_runtime textplan_grammar_headers && popd || exit # Run clang-tidy