mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-04-28 19:51:01 +00:00
testing workflow for windows cuda builds
This commit is contained in:
parent
a787ebe7cf
commit
e1f013bbf8
2 changed files with 36 additions and 0 deletions
32
.github/workflows/kcpp-build-release-linux.yaml
vendored
Normal file
32
.github/workflows/kcpp-build-release-linux.yaml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
name: Koboldcpp Builder Linux
|
||||
|
||||
on: workflow_dispatch
|
||||
env:
|
||||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- name: Clone
|
||||
id: checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: concedo_experimental
|
||||
|
||||
- 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@v3
|
||||
with:
|
||||
name: kcpp_linux_binary
|
||||
path: dist/
|
||||
Loading…
Add table
Add a link
Reference in a new issue