2022-12-29 10:13:03 +08:00
|
|
|
# 名称
|
|
|
|
name: Build
|
|
|
|
|
|
|
|
# 运行条件
|
|
|
|
on:
|
|
|
|
# 触发条件
|
|
|
|
push:
|
|
|
|
branches: ["main"]
|
|
|
|
pull_request:
|
|
|
|
branches: ["main"]
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# 主任务
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# 全都要!
|
|
|
|
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]
|
|
|
|
|
|
|
|
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 11:15:00 +08:00
|
|
|
# 安装 Python
|
2022-12-29 10:13:03 +08:00
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.8' # 为了支持 win7 我还是得用 3.8
|
|
|
|
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
|
|
|
|
pip install nuitka
|
2022-12-29 10:13:03 +08:00
|
|
|
|
|
|
|
|
2022-12-29 11:15:00 +08:00
|
|
|
# # Build python script into a stand-alone exe
|
|
|
|
# - name: Build
|
|
|
|
# uses: Nuitka/Nuitka-Action@v0.4
|
|
|
|
# with:
|
|
|
|
# script-name: DR.py
|
|
|
|
# standalone: true
|
|
|
|
# onefile: false
|
|
|
|
## include-package-data: './configs=./configs'
|
|
|
|
# assume-yes-for-download: true
|
2022-12-29 10:13:03 +08:00
|
|
|
|
2022-12-29 11:15:00 +08:00
|
|
|
# 还是得我自己写脚本
|
|
|
|
- name: Build on Windows
|
|
|
|
if: runner.os == 'Windows'
|
|
|
|
shell: powershell
|
|
|
|
run: |
|
2022-12-29 11:52:37 +08:00
|
|
|
./action_build.ps1
|
2022-12-29 11:50:24 +08:00
|
|
|
# $arg = "--standalone --assume-yes-for-download "
|
|
|
|
# $arg += "--msvc=latest --clang --lto=no --output-dir=build "
|
|
|
|
# $arg += "--nofollow-import-to=objprint,numpy,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 "
|
|
|
|
# python -m nuitka $arg DR.py
|
2022-12-29 10:13:03 +08:00
|
|
|
|
2022-12-29 11:15:00 +08:00
|
|
|
- name: Build on MacOS / Linux
|
|
|
|
if: ${{ runner.os == 'macOS' || runner.os == 'Linux' }}
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2022-12-29 11:25:56 +08:00
|
|
|
arg="--standalone --assume-yes-for-download --output-dir=build "
|
2022-12-29 11:20:18 +08:00
|
|
|
arg+="--clang --lto=no "
|
|
|
|
arg+="--nofollow-import-to=objprint,numpy,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 "
|
2022-12-29 11:24:43 +08:00
|
|
|
arg+="--include-data-dir=./configs=./configs"
|
2022-12-29 11:15:00 +08:00
|
|
|
python -m nuitka $arg DR.py
|
|
|
|
|
|
|
|
- name: after build
|
2022-12-29 11:20:18 +08:00
|
|
|
run: python after_compile.py
|
2022-12-29 11:15:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
# # Uploads artifact
|
|
|
|
# - name: Upload Artifact
|
|
|
|
# uses: actions/upload-artifact@v3
|
|
|
|
# with:
|
|
|
|
# name: ${{ runner.os }} Build
|
|
|
|
# path: |
|
2022-12-29 11:50:24 +08:00
|
|
|
# build/*.zip
|