2024-10-03 01:48:41 +08:00
|
|
|
name: Compile
|
2024-10-03 01:48:18 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-10-03 02:07:31 +08:00
|
|
|
branches:
|
|
|
|
- main
|
2024-10-03 01:48:18 +08:00
|
|
|
|
2024-10-03 01:47:38 +08:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-10-03 02:16:45 +08:00
|
|
|
os: [ ubuntu-latest, windows-latest ]
|
2024-10-03 02:31:08 +08:00
|
|
|
arch: [ x64]
|
2024-10-03 01:47:38 +08:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check-out repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
2024-10-03 02:18:47 +08:00
|
|
|
python-version: '3.11'
|
2024-10-03 02:24:09 +08:00
|
|
|
architecture: ${{ matrix.arch }}
|
2024-10-03 02:15:21 +08:00
|
|
|
cache: 'pip'
|
2024-10-03 02:18:47 +08:00
|
|
|
cache-dependency-path: |
|
|
|
|
**/requirements*.txt
|
2024-10-03 02:15:21 +08:00
|
|
|
|
2024-10-03 01:47:38 +08:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
pip install pdm
|
|
|
|
pdm install --no-lock
|
|
|
|
|
|
|
|
- name: Build Executable
|
|
|
|
uses: Nuitka/Nuitka-Action@main
|
|
|
|
with:
|
|
|
|
nuitka-version: main
|
2024-10-03 02:21:27 +08:00
|
|
|
script-name: main.py
|
2024-10-03 01:47:38 +08:00
|
|
|
onefile: true
|
2024-10-03 02:07:14 +08:00
|
|
|
standalone: true
|
|
|
|
follow-imports: true
|
2024-10-03 01:47:38 +08:00
|
|
|
|
|
|
|
- name: Upload Artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: ${{ runner.os }} Build
|
|
|
|
path: |
|
|
|
|
build/*.exe
|
|
|
|
build/*.bin
|
|
|
|
build/*.app/**/*
|