This repository was archived by the owner on Jan 26, 2026. It is now read-only.
SimSIMD Dispatch Test #27
This file contains hidden or 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: SimSIMD Dispatch Test | |
| on: | |
| schedule: | |
| - cron: "0 5 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| build-precompiled-bin-linux: | |
| uses: ./.github/workflows/linux-precompiled-bin-workflow.yml | |
| with: | |
| isNightly: true | |
| x86_64Only: true | |
| secrets: inherit | |
| build-extensions-linux: | |
| uses: ./.github/workflows/build-extensions.yml | |
| with: | |
| x86_64LinuxOnly: true | |
| secrets: inherit | |
| simsimd-dispatch-test: | |
| name: simsimd-dispatch-test | |
| needs: [build-precompiled-bin-linux, build-extensions-linux] | |
| runs-on: kuzu-self-hosted-testing | |
| env: | |
| NUM_THREADS: 32 | |
| GEN: Ninja | |
| CC: gcc | |
| CXX: g++ | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download nightly build | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: kuzu_cli-linux-x86_64 | |
| - name: Download extensions | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: kuzu-extensions_linux-x86_64 | |
| - name: Extract artifacts | |
| run: | | |
| tar xf kuzu_cli-linux-x86_64.tar.gz | |
| - name: Test | |
| run: gdb --batch -x scripts/test-simsimd-dispatch.py --args ./kuzu |