Skip to content

Commit

Permalink
reduce parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
mortbopet committed Oct 11, 2024
1 parent ab6bf26 commit 646ab61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run-clang-tidy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 646ab61

Please sign in to comment.