mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-09 14:29:15 +02:00
troubleshooting
This commit is contained in:
@@ -23,10 +23,13 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y sudo
|
apt-get install -y sudo
|
||||||
sudo apt-get -y install git curl bzip2
|
sudo apt-get -y install git curl bzip2 build-essential tcl-dev tk-dev python3-tk
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
id: make_build
|
id: make_build
|
||||||
|
env:
|
||||||
|
TCL_LIBRARY: /usr/lib/tcl8.6
|
||||||
|
TK_LIBRARY: /usr/lib/tk8.6
|
||||||
run: |
|
run: |
|
||||||
./koboldcpp.sh dist
|
./koboldcpp.sh dist
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,12 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y sudo
|
apt-get install -y sudo
|
||||||
sudo apt-get -y install git curl bzip2
|
sudo apt-get -y install git curl bzip2 python3-tk tcl tk
|
||||||
|
|
||||||
|
- name: Set Tcl/Tk Paths
|
||||||
|
run: |
|
||||||
|
echo "TCL_LIBRARY=$(find /usr/lib/ -name 'tcl8*' | head -n 1)" >> $GITHUB_ENV
|
||||||
|
echo "TK_LIBRARY=$(find /usr/lib/ -name 'tk8*' | head -n 1)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
id: make_build
|
id: make_build
|
||||||
|
|||||||
Reference in New Issue
Block a user