Skip to content

Commit 6f979e0

Browse files
author
Daniele Briggi
committed
fix(windows): missing git
1 parent 794315b commit 6f979e0

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ jobs:
1919
arch: x86_64
2020
name: linux-vulkan
2121
make: LLAMA="-DGGML_BACKEND_DL=ON -DGGML_NATIVE=OFF -DGGML_CPU_ALL_VARIANTS=ON -DGGML_VULKAN=ON"
22-
- os: LinuxARM64
23-
arch: arm64
24-
name: linux-vulkan
25-
make: LLAMA="-DGGML_BACKEND_DL=ON -DGGML_NATIVE=OFF -DGGML_VULKAN=ON"
2622
- os: macos-latest
2723
name: macos
2824
- os: windows-latest
@@ -86,6 +82,10 @@ jobs:
8682
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV
8783
echo "VK_ADD_LAYER_PATH=$VK_ADD_LAYER_PATH" >> $GITHUB_ENV
8884
85+
- name: windows install sqlite3
86+
if: matrix.os == 'windows-latest'
87+
run: choco install -y sqlite git.install
88+
8989
- name: windows build sqlite-ai
9090
if: matrix.name == 'windows'
9191
run: make extension ${{ matrix.make && matrix.make || ''}}
@@ -95,10 +95,6 @@ jobs:
9595
if: matrix.name != 'windows'
9696
run: make extension ${{ matrix.make && matrix.make || ''}}
9797

98-
- name: windows install sqlite3
99-
if: matrix.os == 'windows-latest'
100-
run: choco install sqlite -y
101-
10298
- name: macos install sqlite3 without SQLITE_OMIT_LOAD_EXTENSION
10399
if: matrix.name == 'macos'
104100
run: brew link sqlite --force

0 commit comments

Comments
 (0)