Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Enable ccache to speed up build (#57)
Browse files Browse the repository at this point in the history
Signed-off-by: yudong.cai <[email protected]>
  • Loading branch information
cydrain authored Jan 20, 2022
1 parent 729df9e commit 71eb986
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ut.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- 'thirdparty/**'
- 'build/**'
- 'build-support/**'
- 'cmake/**'
- '.github/workflows/ut.yaml'
- 'build.sh'
- 'CMakeLists.txt'
Expand Down
2 changes: 1 addition & 1 deletion cmake/BuildUtilsKw.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ function(ADD_THIRDPARTY_LIB LIB_NAME)
endfunction()

MACRO(using_ccache_if_defined KNOWHERE_USE_CCACHE)
if (MILVUS_USE_CCACHE)
if (KNOWHERE_USE_CCACHE)
find_program(CCACHE_FOUND ccache)
if (CCACHE_FOUND)
message(STATUS "Using ccache: ${CCACHE_FOUND}")
Expand Down

0 comments on commit 71eb986

Please sign in to comment.