From 35a05d6ca8ae252414ab744cb49415abeaaa9cf0 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Sun, 9 Jun 2024 00:07:10 -0700 Subject: [PATCH] windows try msvc --- .github/workflows/test.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4c0aee2..1dea30d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -57,6 +57,21 @@ jobs: with: name: sqlite-vec-windows-x86_64-extension path: dist/* + build-windows-x86_64-extension-msvc: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - run: ./scripts/vendor.sh + shell: bash + - run: make loadable CC=cl.exe + - run: pip install pytest numpy; make test-loadable + - uses: actions/upload-artifact@v4 + with: + name: sqlite-vec-windows-x86_64-extension + path: dist/* build-wasm32-emscripten: runs-on: ubuntu-latest steps: