Update workflow for linux

This commit is contained in:
Iswarya Alex 2026-07-29 22:07:11 -07:00
parent 240ed091d5
commit 29bc8871fb
1 changed files with 3 additions and 7 deletions

View File

@ -181,7 +181,9 @@ jobs:
- name: Download ggml model
shell: cmd
run: |
call models\download-ggml-model.cmd %MODEL%
cd models
call download-ggml-model.cmd %MODEL%
cd ..
if not exist models\ggml-%MODEL%.bin ( echo ERROR: model download failed & exit /b 1 )
- name: Download NPU encoder cache
@ -221,12 +223,6 @@ jobs:
- name: Clone
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake git \
python3.12 python3.12-venv libboost-filesystem1.74.0
- name: Verify NPU device
run: |
lsmod | grep -q amdxdna || { echo "ERROR: amdxdna driver not loaded"; exit 1; }