38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
name: PyInstaller Build
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install system deps for wxPython
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libgtk-3-dev libnotify-dev libsdl2-dev \
|
|
libsm-dev libwebkit2gtk-4.0-dev libgstreamer1.0-dev \
|
|
libgstreamer-plugins-base1.0-dev freeglut3-dev
|
|
|
|
- name: Install Python deps
|
|
run: |
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
pip install --only-binary=:all: wxPython
|
|
pip install -r requirements.txt
|
|
pip install pyinstaller
|
|
|
|
- name: Build with PyInstaller
|
|
run: pyinstaller --onefile --name myapp main.py
|
|
|
|
- name: Upload Executable
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: myapp-linux
|
|
path: dist/myapp
|