Skip to content

Commit

Permalink
fix indentation (+1 squashed commits)
Browse files Browse the repository at this point in the history
Squashed commits:

[4d0fc02] testing a simple workflow for windows full build
  • Loading branch information
LostRuins committed Apr 11, 2024
1 parent dd10a51 commit d0e40f9
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 352 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/kcpp-build-release-win-full.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Koboldcpp Builder Windows Full Binaries

on: workflow_dispatch
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}

jobs:
windows:
runs-on: windows-2019
steps:
- name: Clone
id: checkout
uses: actions/checkout@v3
with:
ref: concedo_experimental

- name: Get Python
uses: actions/setup-python@v2
with:
python-version: 3.8.10

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install customtkinter==5.2.0 pyinstaller==5.11.0 psutil==5.9.5
- name: Download and install win64devkit
run: |
curl -L https://github.com/skeeto/w64devkit/releases/download/v1.22.0/w64devkit-1.22.0.zip --output w64devkit.zip
Expand-Archive w64devkit.zip -DestinationPath .
- name: Add w64devkit to PATH
run: |
$env:Path += ";$(Get-Location)\w64devkit-1.22.0\w64devkit\bin"
echo $env:Path
- name: Build Non-CUDA
id: make_build
run: |
make -j ${env:NUMBER_OF_PROCESSORS}
ls
# - uses: Jimver/cuda-toolkit@v0.2.11
# id: cuda-toolkit
# with:
# cuda: '11.4.4'

# - name: Build CUDA
# id: cmake_build
# run: |
# mkdir build
# cd build
# cmake .. -DLLAMA_CUBLAS=ON -DCMAKE_SYSTEM_VERSION="10.0.19041.0"
# cmake --build . --config Release -j ${env:NUMBER_OF_PROCESSORS}

# - name: Save artifact
# uses: actions/upload-artifact@v3
# with:
# name: kcpp_windows_cuda_binary
# path: build/bin/Release/
100 changes: 0 additions & 100 deletions cmake/FindSIMD.cmake

This file was deleted.

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ transformers>=4.34.0
gguf>=0.1.0
customtkinter>=5.1.0
protobuf>=4.21.0
psutil>=5.9.4
9 changes: 0 additions & 9 deletions scripts/gen-authors.sh

This file was deleted.

Loading

0 comments on commit d0e40f9

Please sign in to comment.