2022-12-29 10:13:03 +08:00
|
|
|
# 名称
|
2023-05-14 02:15:57 +08:00
|
|
|
name: Build DR nuitka
|
2022-12-29 10:13:03 +08:00
|
|
|
|
|
|
|
# 运行条件
|
|
|
|
on:
|
|
|
|
# 触发条件
|
|
|
|
push:
|
2023-06-09 14:53:34 +08:00
|
|
|
paths:
|
|
|
|
- "Difficult_Rocket/**" # 本体修改
|
|
|
|
- "libs/pyglet/**" # pyglet 修改
|
|
|
|
- ".github/workflows/**" # workflow 修改
|
2023-06-10 15:37:30 +08:00
|
|
|
- "nuitka_build.py" # 构建脚本修改
|
2023-06-09 16:26:54 +08:00
|
|
|
- "requirements*" # 依赖修改
|
2022-12-29 10:13:03 +08:00
|
|
|
pull_request:
|
2023-06-09 14:53:34 +08:00
|
|
|
paths:
|
|
|
|
- "Difficult_Rocket/**" # 本体修改
|
|
|
|
- "libs/pyglet/**" # pyglet 修改
|
|
|
|
- ".github/workflows/**" # workflow 修改
|
2023-06-10 15:37:30 +08:00
|
|
|
- "nuitka_build.py" # 构建脚本修改
|
2023-06-09 16:26:54 +08:00
|
|
|
- "requirements*" # 依赖修改
|
2022-12-29 10:13:03 +08:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# 主任务
|
|
|
|
jobs:
|
2023-05-14 02:09:44 +08:00
|
|
|
build-nuitka:
|
2023-05-14 02:26:11 +08:00
|
|
|
if: ${{!startsWith(github.event.ref, 'refs/tags/') && contains(github.event.head_commit.message, '[build skip]') == false }}
|
2022-12-29 10:13:03 +08:00
|
|
|
# 全都要!
|
|
|
|
strategy:
|
2022-12-29 10:20:13 +08:00
|
|
|
fail-fast: false
|
2022-12-29 10:13:03 +08:00
|
|
|
matrix:
|
|
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
2023-05-16 21:06:17 +08:00
|
|
|
python-version: ["3.8"] # 3.11 still not support by nuitka 3.10 就不构建了 少消耗一些时间
|
2022-12-29 10:13:03 +08:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
# Check-out repository
|
|
|
|
- name: Check out
|
2023-11-20 20:11:30 +08:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
# 初始化子模块
|
2023-12-02 10:42:01 +08:00
|
|
|
- name: Init submodules
|
|
|
|
run: |
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2022-12-29 10:13:03 +08:00
|
|
|
|
2022-12-29 11:15:00 +08:00
|
|
|
# 安装 Python
|
2022-12-29 14:31:44 +08:00
|
|
|
- name: Setup Python ${{ matrix.python-version }}
|
2022-12-29 10:13:03 +08:00
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
2022-12-29 14:31:44 +08:00
|
|
|
python-version: ${{ matrix.python-version }} # 为了支持 win7 我还是得用 3.8
|
2022-12-29 10:13:03 +08:00
|
|
|
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
|
|
|
|
cache: 'pip'
|
2023-03-02 13:28:48 +08:00
|
|
|
cache-dependency-path: |
|
|
|
|
**/requirement-dev.txt
|
|
|
|
|
2023-11-20 20:34:33 +08:00
|
|
|
# 安装特殊依赖
|
|
|
|
- name: Install git denpendencies
|
2023-04-01 18:49:23 +08:00
|
|
|
run: |
|
2023-12-02 10:25:35 +08:00
|
|
|
pip install libs/lib_not_dr
|
|
|
|
pip install libs/pyglet
|
2022-12-29 10:13:03 +08:00
|
|
|
|
|
|
|
# 安装依赖
|
|
|
|
- name: Install env
|
2022-12-29 11:20:18 +08:00
|
|
|
run: |
|
2023-01-23 01:58:07 +08:00
|
|
|
pip install -r requirement-dev.txt
|
2022-12-29 10:13:03 +08:00
|
|
|
|
2023-03-02 13:22:47 +08:00
|
|
|
# 使用 ruff 检查一遍仓库
|
|
|
|
- name: Ruff check
|
2023-03-02 13:28:48 +08:00
|
|
|
if: runner.os == 'Windows' && matrix.python-version == '3.8'
|
|
|
|
# 只在 windows 的 python 3.8 上检查 减少无用报错
|
|
|
|
run: |
|
|
|
|
pip install ruff
|
2023-11-20 20:34:33 +08:00
|
|
|
ruff check . --exit-zero
|
2023-03-02 13:22:47 +08:00
|
|
|
|
2022-12-29 17:11:44 +08:00
|
|
|
# 提取 DR 版本和其他信息
|
2022-12-30 11:40:03 +08:00
|
|
|
- name: Display Difficult-Rocket info
|
2022-12-29 17:11:44 +08:00
|
|
|
id: DR_info
|
2022-12-30 11:18:14 +08:00
|
|
|
shell: pwsh
|
|
|
|
run: |
|
2023-01-06 21:51:22 +08:00
|
|
|
$infos = python .github/workflows/get_info.py -github
|
2022-12-30 11:18:14 +08:00
|
|
|
Write-Output $infos >> $env:GITHUB_ENV
|
2022-12-30 11:40:03 +08:00
|
|
|
python .github/workflows/get_info.py
|
2022-12-29 17:11:44 +08:00
|
|
|
|
2023-06-10 15:39:50 +08:00
|
|
|
# 使用新的 nuitka_build.py
|
|
|
|
- name: Build by nuitka
|
2023-01-02 19:22:22 +08:00
|
|
|
shell: pwsh
|
2022-12-29 11:15:00 +08:00
|
|
|
run: |
|
2023-12-14 07:49:54 +08:00
|
|
|
python -m lndl_nuitka . -y -github
|
2023-06-10 15:39:50 +08:00
|
|
|
# 集成的构建脚本 好耶!
|
|
|
|
|
|
|
|
# 获取短 sha
|
|
|
|
- name: Get short commit sha
|
|
|
|
id: get_short_sha
|
2023-01-02 20:23:38 +08:00
|
|
|
shell: pwsh
|
2023-02-07 15:30:08 +08:00
|
|
|
run: |
|
2023-06-10 15:39:50 +08:00
|
|
|
$short_sha = Write-Output $env:GITHUB_SHA
|
|
|
|
$short_sha = $short_sha.substring(1,7)
|
|
|
|
Write-Output $short_sha
|
|
|
|
Write-Output "short_sha=$short_sha" >> $env:GITHUB_ENV
|
|
|
|
|
|
|
|
# Uploads artifact
|
2022-12-29 15:10:05 +08:00
|
|
|
- name: Upload Artifact
|
2022-12-29 12:08:08 +08:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-06-10 18:24:24 +08:00
|
|
|
name: Difficult-Rocket_v${{env.DR_version}}-${{runner.os}}${{matrix.python-version}}-Build.${{github.run_number}}+${{env.short_sha}}.zip
|
2022-12-29 12:08:08 +08:00
|
|
|
path: |
|
2023-12-14 07:49:54 +08:00
|
|
|
build/DR.dist
|