tryed to fix some workflow errors.
Some checks failed
PyInstaller Build / build (push) Failing after 10s
Some checks failed
PyInstaller Build / build (push) Failing after 10s
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
name: PyInstaller Build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -13,18 +12,28 @@ jobs:
|
||||
with:
|
||||
python-version: '3.11'
|
||||
|
||||
- name: Install system deps for wxPython
|
||||
- name: Install system dependencies 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
|
||||
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 \
|
||||
libgstreamer-plugins-bad1.0-dev \
|
||||
libpng-dev \
|
||||
libjpeg-dev \
|
||||
libtiff-dev
|
||||
|
||||
- name: Install Python deps
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip setuptools wheel
|
||||
pip install --only-binary=:all: wxPython
|
||||
pip install -r requirements.txt
|
||||
pip install wxPython # Ohne --only-binary flag
|
||||
pip install pyinstaller
|
||||
|
||||
- name: Build with PyInstaller
|
||||
|
||||
Reference in New Issue
Block a user