mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-13 02:19:41 +00:00
33 lines
701 B
YAML
33 lines
701 B
YAML
name: Koboldcpp Linux CUDA12
|
|
|
|
on: workflow_dispatch
|
|
env:
|
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
|
KCPP_CUDA: 12.1.0
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Clone
|
|
id: checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.head_ref || github.ref_name }}
|
|
|
|
- name: Dependencies
|
|
id: depends
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install git curl bzip2
|
|
|
|
- name: Build
|
|
id: make_build
|
|
run: |
|
|
./koboldcpp.sh dist
|
|
|
|
- name: Save artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: kcpp_linux_binary
|
|
path: dist/
|