Revert "env var expanded" #311
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Koboldcpp Windows NoCuda 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: ${{ github.head_ref || github.ref_name }} | |
- 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: | | |
echo "$(Get-Location)\w64devkit\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8 | |
- name: Build Non-CUDA | |
id: make_build | |
run: | | |
make -j ${env:NUMBER_OF_PROCESSORS} | |
- name: Package PyInstallers | |
id: make_pyinstaller | |
run: | | |
./make_pyinstaller.bat | |
- name: Save Windows artifact | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: kcpp-f_windows_nocuda_pyinstaller | |
path: dist/ |