Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/linux_x64_docker_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ jobs:

CMAKE_GENERATOR="Unix Makefiles" \
CMAKE_BUILD_PARALLEL_LEVEL="$NPROC" \
pip install -v .
pip install -v . \
--config-settings='cmake.define.BUILD_TOOLS="ON"'
shell: bash

- name: Run Python Tests with Coverage
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/mac_arm64_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ jobs:

CMAKE_GENERATOR="Unix Makefiles" \
CMAKE_BUILD_PARALLEL_LEVEL="$NPROC" \
pip install -v .
pip install -v . \
--config-settings='cmake.define.BUILD_TOOLS="ON"'
shell: bash

- name: Run Python Tests with Coverage
Expand All @@ -96,4 +97,4 @@ jobs:
run: |
cd "$CLEAN_WORKSPACE/build"
make unittest -j 16
shell: bash
shell: bash
2 changes: 2 additions & 0 deletions tools/core/local_builder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
#include <ailego/pattern/defer.h>
#include <zvec/ailego/container/params.h>
#include <zvec/ailego/utility/time_helper.h>
#include "algorithm/flat/flat_utility.h"
#include "algorithm/hnsw/hnsw_params.h"
#include "zvec/core/framework/index_dumper.h"
#include "zvec/core/framework/index_factory.h"
#include "zvec/core/framework/index_logger.h"
Expand Down