mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-14 08:22:43 +00:00
Squashed commit: [d1f6a4154] bundle library [947ab84b7] undo [0f9aba8d8] test [e9ac93873] test [920438202] test [1c6d98804] Revert "quick test" This reverts commitacf8ec8940. [acf8ec894] quick test [6a9937233] undo [5a263a5bd] test [ddfd82bca] test [0b30e45da] test [c3bfece55] messed up [2a4b37fe0] Revert "test" This reverts commit80a1fcaeaf. [80a1fcaea] test [e2aa7d944] test [264d80200] test [f5b123173] undo [1ffacc484] test [63c0be926] undo [510e0377e] ofast try fix [4ac199b20] try fix sigill [1bc987ba2] try fix illegal instruction [7697252b1] edit [f87087b28] check gcc ver [e9dfe2cef] try using qemu to do the pyinstaller [b411192db] revert [25b5301e5] try using qemu to do the pyinstaller [58038cddc] try using qemu to do the pyinstaller
41 lines
1.5 KiB
YAML
41 lines
1.5 KiB
YAML
name: Koboldcpp Mac
|
|
|
|
on: workflow_dispatch
|
|
env:
|
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
|
|
|
jobs:
|
|
osx:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Clone
|
|
id: checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.head_ref || github.ref_name }}
|
|
|
|
- name: Dependencies
|
|
id: depends
|
|
run: |
|
|
pip install customtkinter pyinstaller tk
|
|
|
|
- name: Build
|
|
id: make_build
|
|
run: |
|
|
make LLAMA_METAL=1 LLAMA_PORTABLE=1
|
|
chmod +x './create_ver_file.sh'
|
|
. create_ver_file.sh
|
|
pyinstaller --noconfirm --onefile --collect-all customtkinter --collect-all psutil --add-data './koboldcpp_default.so:.' --add-data './ggml-metal-merged.metal:.' --add-data './kcpp_adapters:./kcpp_adapters' --add-data './koboldcpp.py:.' --add-data './klite.embd:.' --add-data './kcpp_docs.embd:.' --add-data './kcpp_sdui.embd:.' --add-data './taesd.embd:.' --add-data './taesd_xl.embd:.' --add-data './rwkv_vocab.embd:.' --add-data './rwkv_world_vocab.embd:.' --version-file './version.txt' --clean --console koboldcpp.py -n "koboldcpp-mac-arm64"
|
|
|
|
- name: Test
|
|
id: test
|
|
run: |
|
|
wget https://huggingface.co/concedo/koboldcpp/resolve/main/baby_llama.gguf
|
|
dist/koboldcpp-mac-arm64 --model baby_llama.gguf --gpulayers 99 --benchmark --prompt 'Hi, my name is'
|
|
|
|
- name: Save artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: kcpp_mac_binary
|
|
path: dist/
|
|
|