Skip to content

Commit caad57f

Browse files
committed
test
1 parent 1e10950 commit caad57f

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

ci/scripts/build_paimon.sh

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,19 @@ fi
4141

4242
if [[ "${check_clang_tidy}" == "true" ]]; then
4343
CMAKE_ARGS+=(
44+
"-DPAIMON_LINT_GIT_DIFF_MODE=OFF"
4445
"-DPAIMON_LINT_GIT_TARGET_COMMIT=origin/main"
4546
)
4647
fi
4748

48-
git log -10 --decorate
49+
cmake "${CMAKE_ARGS[@]}" ${source_dir}
50+
cmake --build . -- -j$(nproc)
51+
ctest --output-on-failure -j $(nproc)
4952

50-
# cmake "${CMAKE_ARGS[@]}" ${source_dir}
51-
# cmake --build . -- -j$(nproc)
52-
# ctest --output-on-failure -j $(nproc)
53-
54-
# if [[ "${check_clang_tidy}" == "true" ]]; then
55-
# cmake --build . --target check-clang-tidy
56-
# fi
53+
if [[ "${check_clang_tidy}" == "true" ]]; then
54+
cmake --build . --target check-clang-tidy
55+
fi
5756

58-
# popd
57+
popd
5958

60-
# rm -rf ${build_dir}
59+
rm -rf ${build_dir}

0 commit comments

Comments
 (0)