File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -287,10 +287,20 @@ jobs:
287287 exit 1
288288 }
289289
290- - name : Download test model
290+ - name : Download test model (Linux/macOS)
291+ if : runner.os != 'Windows'
291292 run : |
292293 mkdir -p models
293294 curl -L -o models/Lucy-Q4_0.gguf "https://huggingface.co/Menlo/Lucy-gguf/resolve/main/Lucy-Q4_0.gguf"
295+
296+ - name : Download test model (Windows)
297+ if : runner.os == 'Windows'
298+ shell : pwsh
299+ run : |
300+ if (-not (Test-Path "models")) {
301+ New-Item -ItemType Directory -Path "models"
302+ }
303+ Invoke-WebRequest -Uri "https://huggingface.co/Menlo/Lucy-gguf/resolve/main/Lucy-Q4_0.gguf" -OutFile "models\Lucy-Q4_0.gguf"
294304
295305 - name : Verify binary (Linux/macOS)
296306 if : runner.os != 'Windows'
You can’t perform that action at this time.
0 commit comments