Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bccab5f

Browse files
committed
release workflow remove cuda build
1 parent d7b9304 commit bccab5f

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

.github/workflows/release.yaml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ env:
1313
MODEL_NAME: "codellama-7b.Q2_K.gguf"
1414
jobs:
1515

16-
build-linux-cuda:
17-
name: Build Linux x86-64 CUDA12
18-
runs-on: ubuntu-latest
19-
steps:
20-
- uses: actions/checkout@v4
21-
- name: Build libraries
22-
shell: bash
23-
run: |
24-
.github/dockcross/dockcross-manylinux_2_28-x64 .github/build_cuda_linux.sh "-DOS_NAME=Linux -DOS_ARCH=x86_64"
25-
- name: Upload artifacts
26-
uses: actions/upload-artifact@v4
27-
with:
28-
name: linux-libraries-cuda
29-
path: ${{ github.workspace }}/src/main/resources_linux_cuda/de/kherud/llama/
16+
# todo: doesn't work with the newest llama.cpp version
17+
# build-linux-cuda:
18+
# name: Build Linux x86-64 CUDA12
19+
# runs-on: ubuntu-latest
20+
# steps:
21+
# - uses: actions/checkout@v4
22+
# - name: Build libraries
23+
# shell: bash
24+
# run: |
25+
# .github/dockcross/dockcross-manylinux_2_28-x64 .github/build_cuda_linux.sh "-DOS_NAME=Linux -DOS_ARCH=x86_64"
26+
# - name: Upload artifacts
27+
# uses: actions/upload-artifact@v4
28+
# with:
29+
# name: linux-libraries-cuda
30+
# path: ${{ github.workspace }}/src/main/resources_linux_cuda/de/kherud/llama/
3031

3132
build-linux-docker:
3233
name: Build ${{ matrix.target.os }}-${{ matrix.target.arch }}
@@ -194,7 +195,7 @@ jobs:
194195

195196
publish:
196197
if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.build_only == 'no' }}
197-
needs: [ test-linux,build-macos-native,build-win-native,build-linux-cuda ]
198+
needs: [ test-linux,build-macos-native,build-win-native ] #,build-linux-cuda
198199
runs-on: ubuntu-latest
199200
steps:
200201
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)