-
Notifications
You must be signed in to change notification settings - Fork 151
56 lines (56 loc) · 1.65 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: "Test"
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build-linux-x86_64-extension:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: ./scripts/vendor.sh
- run: make loadable
- run: pip install pytest numpy; make test-loadable
- uses: actions/upload-artifact@v3
with:
name: sqlite-vec-linux-x86_64-extension
path: dist/*
build-macos-x86_64-extension:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- run: ./scripts/vendor.sh
- run: make loadable
- run: /usr/local/opt/python@3/libexec/bin/python -m pip install pytest numpy; make test-loadable python=/usr/local/opt/python@3/libexec/bin/python
- uses: actions/upload-artifact@v3
with:
name: sqlite-vec-macos-x86_64-extension
path: dist/*
build-macos-aarch64-extension:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- run: ./scripts/vendor.sh
- run: make loadable CFLAGS="-target arm64-apple-macos11"
- uses: actions/upload-artifact@v3
with:
name: sqlite-vec-macos-aarch64-extension
path: dist/*
build-windows-x86_64-extension:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- run: ./scripts/vendor.sh
shell: bash
- run: ls vendor/
- run: make loadable
- run: pip install pytest numpy; make test-loadable
- uses: actions/upload-artifact@v3
with:
name: sqlite-vec-windows-x86_64-extension
path: dist/*