Skip to content

Commit 5fb3398

Browse files
committed
Update build.yml
1 parent ed93a0a commit 5fb3398

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
curl -L -o llama-cpp.zip "$DOWNLOAD_URL"
6868
6969
if [ $? -eq 0 ]; then
70-
unzip -q llama-${LLAMACPP_VERSION}-bin-win-cuda-cu12.2.0-x64.zip
70+
unzip -q llama-cpp.zip
7171
if [ -d "$EXTRACT_DIR" ]; then
7272
cp "$EXTRACT_DIR/rpc-server.exe" bin/windows/ 2>/dev/null || echo "Warning: rpc-server.exe not found"
7373
cp "$EXTRACT_DIR/llama-server.exe" bin/windows/ 2>/dev/null || echo "Warning: llama-server.exe not found"
@@ -91,7 +91,7 @@ jobs:
9191
curl -L -o llama-cpp.zip "$DOWNLOAD_URL"
9292
9393
if [ $? -eq 0 ]; then
94-
unzip -q llama-${LLAMACPP_VERSION}-bin-macos-arm64.zip
94+
unzip -q llama-cpp.zip
9595
if [ -d "$EXTRACT_DIR" ]; then
9696
cp "$EXTRACT_DIR/rpc-server" bin/macos/ 2>/dev/null || echo "Warning: rpc-server not found"
9797
cp "$EXTRACT_DIR/llama-server" bin/macos/ 2>/dev/null || echo "Warning: llama-server not found"
@@ -115,7 +115,7 @@ jobs:
115115
curl -L -o llama-cpp.zip "$DOWNLOAD_URL"
116116
117117
if [ $? -eq 0 ]; then
118-
unzip -q llama-${LLAMACPP_VERSION}-bin-ubuntu-vulkan-x64.zip
118+
unzip -q llama-cpp.zip
119119
if [ -d "$EXTRACT_DIR" ]; then
120120
cp "$EXTRACT_DIR/rpc-server" bin/linux/ 2>/dev/null || echo "Warning: rpc-server not found"
121121
cp "$EXTRACT_DIR/llama-server" bin/linux/ 2>/dev/null || echo "Warning: llama-server not found"

0 commit comments

Comments
 (0)