Skip to content

Commit

Permalink
Try to fix linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
HEnquist committed Jan 29, 2025
1 parent 51ae6b3 commit 4eae710
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,15 @@ jobs:
--volume "${PWD}:/cdsp"
install: |
apt update -y
apt install python3 -y
apt install python3 python3-pip python3-venv -y
#
# Produce a binary artifact and place it in the mounted volume
run: |
pip install -r requirements.txt
pip install pyinstaller
python3 -m venv ./venv
./.venv/bin/python3 -m pip install -r requirements.txt
./.venv/bin/python3 -m pip install pyinstaller
cd cdsp
pyinstaller .\main.py --add-data .\config\:config --add-data .\build\:build --collect-data camilladsp_plot --name camillagui_backend
../.venv/bin/python3 -m PyInstaller .\main.py --add-data .\config\:config --add-data .\build\:build --collect-data camilladsp_plot --name camillagui_backend
- name: Upload build
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 4eae710

Please sign in to comment.