We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f1fa6 commit 0acbf30Copy full SHA for 0acbf30
.github/workflows/clang_test.yaml
@@ -40,6 +40,7 @@ jobs:
40
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
41
with:
42
lfs: true
43
+ fetch-depth: 0
44
- name: Build Paimon
45
shell: bash
46
env:
ci/scripts/build_paimon.sh
@@ -39,6 +39,12 @@ if [[ "${enable_sanitizer}" == "true" ]]; then
39
)
fi
+if [[ "${check_clang_tidy}" == "true" ]]; then
+ CMAKE_ARGS+=(
+ "-DPAIMON_LINT_GIT_TARGET_COMMIT=origin/main"
+ )
+fi
47
+
48
cmake "${CMAKE_ARGS[@]}" ${source_dir}
49
cmake --build . -- -j$(nproc)
50
ctest --output-on-failure -j $(nproc)
0 commit comments