Add pyinstaller linux CI build

This commit is contained in:
Stephen Horvath
2025-08-22 19:15:27 +10:00
parent e7b4e4d194
commit 2c02c00268
4 changed files with 75 additions and 50 deletions

View File

@@ -9,7 +9,7 @@ jobs:
flatpak: flatpak:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: bilelmoussaoui/flatpak-github-actions:gnome-47 image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-48
options: --privileged options: --privileged
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

25
.github/workflows/pyinstaller-linux.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: PyInstaller Build Linux
on:
push:
branches: [main]
pull_request:
jobs:
pyinstaller-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: python3-gi gir1.2-gtk-4.0 gir1.2-adw-1
version: 0
- run: pip install pyinstaller
- run: pip install .
- run: pyinstaller yafi.spec
working-directory: pyinstaller
- name: Upload PyInstaller Artifact
uses: actions/upload-artifact@v4
with:
path: pyinstaller/dist/YAFI
name: yafi-linux-${{ github.sha }}

View File

@@ -1,12 +1,13 @@
# -*- mode: python ; coding: utf-8 -*- # -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_data_files from PyInstaller.utils.hooks import collect_data_files
import os
datas = [('LpcCrOSEC.bin', '.')] datas = [('LpcCrOSEC.bin', '.')] if os.path.exists('LpcCrOSEC.bin') else []
datas += collect_data_files('yafi') datas += collect_data_files('yafi')
a = Analysis( a = Analysis(
['winyafi.py'], ['entrypoint.py'],
pathex=[], pathex=[],
binaries=[], binaries=[],
datas=datas, datas=datas,
@@ -26,7 +27,7 @@ exe = EXE(
a.binaries, a.binaries,
a.datas, a.datas,
[], [],
name='winyafi', name='YAFI',
debug=False, debug=False,
bootloader_ignore_signals=False, bootloader_ignore_signals=False,
strip=False, strip=False,
@@ -40,5 +41,4 @@ exe = EXE(
codesign_identity=None, codesign_identity=None,
entitlements_file=None, entitlements_file=None,
icon=['yafi.ico'], icon=['yafi.ico'],
uac_admin=True,
) )