Skip to content

Commit

Permalink
ci: fix windows amd64 build
Browse files Browse the repository at this point in the history
Signed-off-by: thxCode <thxcode0824@gmail.com>
  • Loading branch information
thxCode committed Dec 23, 2024
1 parent 2060382 commit 050999c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ jobs:
-DGGML_STATIC=on `
-DGGML_OPENMP=off `
-DGGML_RPC=on
cmake --build ${{ github.workspace }}\build --target llama-box --config Release -- -j ${env:NUMBER_OF_PROCESSORS}
cmake --build ${{ github.workspace }}\build --target llama-box --config Release -- ${{ matrix.arch == 'arm64' && '-j ' || '/m:' }}${env:NUMBER_OF_PROCESSORS}
Write-Host "===== RESULT ====="
Get-ChildItem -Path "${{ github.workspace }}\build\bin\Release\" -File -ErrorAction Ignore
if (Test-Path -Path "${{ github.workspace }}\build\bin\Release\llama-box.exe") {
Expand Down

0 comments on commit 050999c

Please sign in to comment.