2022-12-29 10:13:03 +08:00
|
|
|
# 名称
|
|
|
|
name: Build
|
|
|
|
|
|
|
|
# 运行条件
|
|
|
|
on:
|
|
|
|
# 触发条件
|
|
|
|
push:
|
|
|
|
branches: ["main"]
|
|
|
|
pull_request:
|
|
|
|
branches: ["main"]
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# 主任务
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-01-02 20:15:33 +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]
|
2022-12-29 14:42:16 +08:00
|
|
|
python-version: ["3.8", "3.10"] # 3.11 will come later
|
2022-12-29 10:13:03 +08:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
# Check-out repository
|
|
|
|
- name: Check out
|
2022-12-29 10:15:03 +08:00
|
|
|
uses: actions/checkout@v3
|
2022-12-29 10:13:03 +08:00
|
|
|
|
2022-12-29 14:03:59 +08:00
|
|
|
# 获取短 sha
|
2022-12-29 14:56:07 +08:00
|
|
|
- name: Get short commit sha
|
|
|
|
id: get_short_sha
|
2022-12-30 10:59:44 +08:00
|
|
|
shell: pwsh
|
2022-12-29 14:19:44 +08:00
|
|
|
run: |
|
2022-12-30 11:00:19 +08:00
|
|
|
# short_sha=$(echo ${GITHUB_SHA} | cut -c1-7)
|
|
|
|
# echo "short_sha=$short_sha" >> $GITHUB_OUTPUT
|
|
|
|
# echo $GITHUB_OUTPUT
|
2022-12-30 11:06:12 +08:00
|
|
|
$short_sha = Write-Output $env:GITHUB_SHA
|
2022-12-30 10:59:44 +08:00
|
|
|
$short_sha = $short_sha.substring(1,7)
|
|
|
|
Write-Output $short_sha
|
|
|
|
Write-Output "short_sha=$short_sha" >> $env:GITHUB_ENV
|
2022-12-29 14:19:44 +08:00
|
|
|
|
2022-12-29 14:03:59 +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'
|
2022-12-29 10:21:30 +08:00
|
|
|
cache-dependency-path: '**/requirement*.txt'
|
2022-12-29 10:13:03 +08:00
|
|
|
|
|
|
|
# 安装依赖
|
|
|
|
- name: Install env
|
2022-12-29 11:20:18 +08:00
|
|
|
run: |
|
|
|
|
pip install -r requirement.txt
|
2023-01-03 15:34:06 +08:00
|
|
|
pip install nuitka ordered-set imageio
|
2022-12-29 10:13:03 +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: |
|
2022-12-30 11:30:41 +08:00
|
|
|
$infos = python .github/workflows/get_info.py -env
|
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
|
|
|
|
2022-12-29 11:15:00 +08:00
|
|
|
# 还是得我自己写脚本
|
|
|
|
- name: Build on Windows
|
|
|
|
if: runner.os == 'Windows'
|
2022-12-29 14:42:16 +08:00
|
|
|
shell: pwsh
|
2022-12-29 11:15:00 +08:00
|
|
|
run: |
|
2022-12-29 14:56:07 +08:00
|
|
|
$arg = @()
|
2023-01-02 19:22:22 +08:00
|
|
|
# 输出配置
|
2022-12-29 14:56:07 +08:00
|
|
|
$arg += @("--standalone")
|
2023-01-02 19:22:22 +08:00
|
|
|
$arg += @("--output-dir=build")
|
|
|
|
$arg += @("--company-name=tool-shenjack-workshop")
|
|
|
|
$arg += @("--product-name=Difficult-Rocket")
|
|
|
|
$arg += @("--product-version=$env:DR_version")
|
2023-01-03 15:34:06 +08:00
|
|
|
$arg += @("--file-version=$env:Build_version")
|
2023-01-02 19:22:22 +08:00
|
|
|
$arg += @("--file-description=Difficult-Rocket!")
|
2023-01-03 15:34:06 +08:00
|
|
|
$arg += @("--windows-icon-from-ico=textures/icon.png")
|
2023-01-03 16:34:08 +08:00
|
|
|
# $arg += @("--macos-app-icon=textures/icon.png")
|
2023-01-02 19:22:22 +08:00
|
|
|
# 编译器配置
|
2022-12-29 14:56:07 +08:00
|
|
|
$arg += @("--msvc=latest")
|
|
|
|
$arg += @("--clang")
|
|
|
|
$arg += @("--lto=no")
|
2023-01-02 19:22:22 +08:00
|
|
|
# 包配置
|
|
|
|
$arg += @("--nofollow-import-to=objprint,pillow,cffi,PIL,pyglet")
|
|
|
|
# 数据配置
|
2022-12-29 14:56:07 +08:00
|
|
|
$arg += @("--include-data-dir=./libs/pyglet=./pyglet")
|
|
|
|
$arg += @("--include-data-dir=./libs/fonts=./libs/fonts")
|
|
|
|
$arg += @("--include-data-dir=./textures=./textures")
|
|
|
|
$arg += @("--include-data-dir=./configs=./configs")
|
2023-01-02 19:22:22 +08:00
|
|
|
# 编译配置
|
2022-12-29 17:26:39 +08:00
|
|
|
# $arg += @("--show-progress")
|
2022-12-29 17:11:44 +08:00
|
|
|
$arg += @("--assume-yes-for-download")
|
2022-12-29 14:56:07 +08:00
|
|
|
python -m nuitka $arg DR.py
|
2022-12-29 10:13:03 +08:00
|
|
|
|
2023-01-02 19:35:45 +08:00
|
|
|
Rename-Item ./build/DR.dist Difficult-Rocket
|
|
|
|
|
2022-12-29 11:15:00 +08:00
|
|
|
- name: Build on MacOS / Linux
|
|
|
|
if: ${{ runner.os == 'macOS' || runner.os == 'Linux' }}
|
2023-01-02 19:22:22 +08:00
|
|
|
shell: pwsh
|
2022-12-29 11:15:00 +08:00
|
|
|
run: |
|
2023-01-02 19:22:22 +08:00
|
|
|
$arg = @()
|
|
|
|
# 输出配置
|
|
|
|
$arg += @("--standalone")
|
|
|
|
$arg += @("--output-dir=build")
|
|
|
|
$arg += @("--company-name=tool-shenjack-workshop")
|
|
|
|
$arg += @("--product-name=Difficult-Rocket")
|
|
|
|
$arg += @("--product-version=$env:DR_version")
|
2023-01-03 15:34:06 +08:00
|
|
|
$arg += @("--file-version=$env:Build_version")
|
2023-01-02 19:22:22 +08:00
|
|
|
$arg += @("--file-description=Difficult-Rocket!")
|
2023-01-03 16:34:08 +08:00
|
|
|
# $arg += @("--windows-icon-from-ico=textures/icon.png")
|
2023-01-03 15:34:06 +08:00
|
|
|
$arg += @("--macos-app-icon=textures/icon.png")
|
2023-01-02 19:22:22 +08:00
|
|
|
# 编译器配置
|
|
|
|
$arg += @("--clang")
|
|
|
|
$arg += @("--lto=no")
|
|
|
|
# 包配置
|
|
|
|
$arg += @("--nofollow-import-to=objprint,pillow,cffi,PIL,pyglet")
|
|
|
|
# 数据配置
|
|
|
|
$arg += @("--include-data-dir=./libs/pyglet=./pyglet")
|
|
|
|
$arg += @("--include-data-dir=./libs/fonts=./libs/fonts")
|
|
|
|
$arg += @("--include-data-dir=./textures=./textures")
|
|
|
|
$arg += @("--include-data-dir=./configs=./configs")
|
|
|
|
# 编译配置
|
|
|
|
# $arg += @("--show-progress")
|
|
|
|
$arg += @("--assume-yes-for-download")
|
2022-12-29 11:15:00 +08:00
|
|
|
python -m nuitka $arg DR.py
|
2023-01-02 19:22:22 +08:00
|
|
|
|
2023-01-02 19:35:45 +08:00
|
|
|
Rename-Item ./build/DR.dist Difficult-Rocket
|
2022-12-29 11:15:00 +08:00
|
|
|
|
2023-01-02 20:23:38 +08:00
|
|
|
- name: after build
|
|
|
|
shell: pwsh
|
|
|
|
run: python ./.github/workflows/after_compile.py
|
2022-12-29 11:15:00 +08:00
|
|
|
|
2022-12-29 14:39:26 +08:00
|
|
|
# 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:
|
2022-12-30 11:47:27 +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-01-02 20:23:38 +08:00
|
|
|
build/main.zip
|