Skip to content

Commit b4ac335

Browse files
committed
Add separate build step for Windows in GitHub Actions workflow
1 parent 1ae6bc0 commit b4ac335

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,13 @@ jobs:
6060
mingw-w64-x86_64-cc
6161
make
6262
63+
- name: windows build sqlite-ai
64+
if: matrix.name == 'windows'
65+
run: make extension ${{ matrix.make && matrix.make || ''}}
66+
shell: msys2 {0}
67+
6368
- name: build sqlite-ai
69+
if: matrix.name != 'windows'
6470
run: make extension ${{ matrix.make && matrix.make || ''}}
6571

6672
- name: windows install sqlite3

0 commit comments

Comments
 (0)