mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-03 06:00:31 +00:00
update workflows, update gemma default adapter sysprompt
This commit is contained in:
parent
956ed89595
commit
c94aec1930
8 changed files with 84 additions and 14 deletions
|
|
@ -1,6 +1,13 @@
|
|||
name: Koboldcpp Linux CUDA12
|
||||
|
||||
on: workflow_dispatch
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
commit_hash:
|
||||
description: 'Optional commit hash to build from'
|
||||
required: false
|
||||
default: ''
|
||||
|
||||
env:
|
||||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
||||
KCPP_CUDA: 12.1.0
|
||||
|
|
@ -16,7 +23,11 @@ jobs:
|
|||
id: checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
ref: ${{ inputs.commit_hash != '' && inputs.commit_hash || github.head_ref || github.ref_name }}
|
||||
|
||||
- name: Show Commit Used
|
||||
run: |
|
||||
echo "Building from ref: ${{ inputs.commit_hash != '' && inputs.commit_hash || github.head_ref || github.ref_name }}"
|
||||
|
||||
- name: Dependencies
|
||||
id: depends
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue