Skip to content

Commit 146e3bb

Browse files
henk717root
and
root
authoredDec 14, 2023
Automatically generate Linux Binaries (ggml-org#564)
* .sh script V1 * koboldcpp.sh polish * koboldcpp.sh dist generator * Include html's in dist * RWKV in Linux Dist * Lower dependency requirements * Eliminate wget dependency * More distinct binary name I know its technically amd64, but I don't want to cause confusion among nvidia users. * Use System OpenCL Unsure how this will behave in the pyinstaller build, but pocl ended up CPU only. With a bit of luck the pyinstaller uses the one from the actual system if compiled in a system without opencl, while conda now includes it for that specific system. * Add cblas dependency Missing this causes compile failures on some system's * ICD workaround Ideally we find a better solution, but conda forces ICD and needs this for the successful compile. However, pyinstaller then embeds the ICD causing it to be limited to the system it was compiled for. By temporarily removing the ICD pyinstaller can't find it and everything remains functional. Ideally we do this on a pyinstaller level, but I could not find any good options to do so yet. * Fix & Nocuda * Automatically build Linux Binary * Auto build on v tag * Better on release * Fix missing jobs: * More distinct name * I am to retro... * Fix release upload * Another upload attempt * Another upload attempt * Also rebuild on release edit * Placebo commit to maybe fix CI --------- Co-authored-by: root <root@DESKTOP-DQ1QRAG>
1 parent 8dd9756 commit 146e3bb

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
 
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Koboldcpp Builder
2+
3+
on:
4+
release:
5+
types:
6+
- created
7+
- edited
8+
env:
9+
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
10+
11+
jobs:
12+
linux:
13+
runs-on: ubuntu-20.04
14+
steps:
15+
- name: Clone
16+
id: checkout
17+
uses: actions/checkout@v3
18+
19+
- name: Dependencies
20+
id: depends
21+
run: |
22+
sudo apt-get update
23+
sudo apt-get install git curl bzip2
24+
25+
- name: Build
26+
id: make_build
27+
run: |
28+
./koboldcpp.sh dist
29+
30+
- name: Upload release binaries
31+
uses: alexellis/upload-assets@0.4.0
32+
env:
33+
GITHUB_TOKEN: ${{ github.token }}
34+
with:
35+
asset_paths: '["./dist/*"]'

0 commit comments

Comments
 (0)