shenjack
f9eeafe322
readme update 看起来更像 Dear ImGui 一些(looks more like Dear ImGui and some intersting feature to the button remove debug 确认一下action 404 修改 writing theme looks good better? a ? alpha=255 not 256 looks better try new pyglet first 看起来好一些 sync pyglet 水一手 这波必须得水一手了,要不然commit太少了(确信 丢点正经东西上去 顺手继承一下Options 补充docs 坏了,忘记水commit了( 至少我能早睡了( 这里还能水一点来着( 试试再说 reee 保证能跑( 同步lib not dr 的修改 忘记带上 None了 还是加上一个额外的判断参数吧 刷点commit也不错 先更新一下依赖版本 水commit啦 理论可行,实践开始! 构建参数喜加一 reeeee 更新一下 pyproject 的依赖 fix typing looks better 水一个( 测试? sync pyglet to master A | Try use rust-cache looks good? what? C | sync pyglet A | 添加了一个 Button Draw Theme A | Magic Number (确信) A | 尽量不继承Options sync pyglet A | Add theme A | Add more Theme information Enhance | Theme sync pyglet Add | add unifont Enhance | use os.walk in font loading Enhance | Use i18n in font loading Enhance | doc sync pyglet Add | add 3.12 build option to build_rs Fix | Button position have a z sync pyglet A | Logger.py 启动! sync pyglet Changed | Bump pyo3 to 0.20.0 add logger.py update logger! Add | more logger! Add | lib-not-dr some lib-not-dr
101 lines
2.9 KiB
YAML
101 lines
2.9 KiB
YAML
# 名称
|
|
name: Build DR rs
|
|
|
|
# 运行条件
|
|
on:
|
|
# 触发条件
|
|
push:
|
|
paths:
|
|
- "mods/dr_game/**" # 本体修改
|
|
- ".github/workflows/**" # workflow 修改
|
|
- "requirements*" # 依赖修改
|
|
pull_request:
|
|
paths:
|
|
- "mods/dr_game/**" # 本体修改
|
|
- ".github/workflows/**" # workflow 修改
|
|
- "requirements*" # 依赖修改
|
|
workflow_dispatch:
|
|
|
|
# 主任务
|
|
jobs:
|
|
build-dr-rs:
|
|
if: ${{!startsWith(github.event.ref, 'refs/tags/') && contains(github.event.head_commit.message, '[build rs skip]') == false }}
|
|
# 全都要!
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
python-version: ["3.8", "3.10"] # 3.11 still not support by nuitka
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
# Check-out repository
|
|
- name: Check out
|
|
uses: actions/checkout@v3
|
|
|
|
# 缓存 Rust 构建
|
|
- name: Cache rust
|
|
uses: Swatinem/rust-cache@v2
|
|
with:
|
|
workspace: mods/dr_game/Difficult_Rocket_rs
|
|
key: dr_rs-v1
|
|
|
|
# 获取短 sha
|
|
- name: Get short commit sha
|
|
id: get_short_sha
|
|
shell: pwsh
|
|
run: |
|
|
# short_sha=$(echo ${GITHUB_SHA} | cut -c1-7)
|
|
# echo "short_sha=$short_sha" >> $GITHUB_OUTPUT
|
|
# echo $GITHUB_OUTPUT
|
|
$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
|
|
|
|
|
|
# 安装 Python
|
|
- name: Setup Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }} # 为了支持 win7 我还是得用 3.8
|
|
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
|
|
cache: 'pip'
|
|
cache-dependency-path: |
|
|
**/requirement-dev.txt
|
|
.github/workflows/requirement.txt
|
|
|
|
# 安装依赖
|
|
- name: Install env
|
|
run: |
|
|
pip install -r requirement-dev.txt
|
|
|
|
# 提取 DR 版本和其他信息
|
|
- name: Display Difficult-Rocket info
|
|
id: DR_info
|
|
shell: pwsh
|
|
run: |
|
|
$infos = python .github/workflows/get_info.py -github
|
|
Write-Output $infos >> $env:GITHUB_ENV
|
|
python .github/workflows/get_info.py
|
|
|
|
# 编译 dr_rs
|
|
- name: Build dr_rs
|
|
shell: pwsh
|
|
run: |
|
|
Set-Location mods/dr_game/Difficult_Rocket_rs/src
|
|
python setup.py build
|
|
python post_build.py
|
|
python setup.py clean
|
|
cd ..
|
|
Remove-Item -Recurse -Force src
|
|
|
|
# Uploads artifact
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: DR_rs${{env.DR_version}}-${{runner.os}}${{matrix.python-version}}-Build.${{github.run_number}}+${{env.short_sha}}
|
|
path: |
|
|
mods/dr_game
|