Skip to content

Commit

Permalink
reorganized
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Jul 26, 2024
1 parent 39af88e commit 0f7072c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/run-clang-tidy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
SCRIPTDIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
WORKDIR="$( cd $SCRIPTDIR/.. && pwd )"

set -o errexit

echo Making compile_command.json
rm -rf tmp && mkdir tmp && cmake -Btmp -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DSUBSTRAIT_CPP_ROUNDTRIP_TESTING=ON
echo Building substrait protobuf
pushd tmp/src/substrait/proto && make -j && popd || exit
pushd tmp/src/substrait/proto
make -j
popd
echo Building textplan grammar
pushd tmp/src/substrait/textplan/parser/grammar && make -j antlr4_runtime textplan_grammar_headers && popd || exit
echo Running clang-tidy
Expand Down

0 comments on commit 0f7072c

Please sign in to comment.