For type-erased Python indexes, 1) Don't consolidate parts and ids Arrays 2) Avoid extra Schema open in constructor #1875
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
run-tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install OpenBLAS | |
if: ${{ runner.os == 'Linux' }} | |
run: sudo apt install libopenblas-dev | |
- uses: actions/checkout@v3 | |
- name: Configure CMake | |
run: cmake -S ./src -B ./src/build -DCMAKE_BUILD_TYPE=Debug -DTILEDB_VS_ENABLE_BLAS=ON | |
- name: Build | |
run: cmake --build ./src/build -j3 | |
- name: Fix Windows dll inclusion with ctest | |
if: ${{ runner.os == 'Windows' }} | |
run: | | |
cp .\src\build\externals\install\bin\tiledb.dll D:/a/TileDB-Vector-Search/TileDB-Vector-Search/src/build/libtiledbvectorsearch/include/test | |
- name: Run Tests | |
run: cmake --build ./src/build --target check-ci |