2023-05-14 01:41:03 +08:00
|
|
|
# 名称
|
2023-05-14 02:15:57 +08:00
|
|
|
name: Build DR rs
|
2023-05-14 01:41:03 +08:00
|
|
|
|
|
|
|
# 运行条件
|
|
|
|
on:
|
|
|
|
# 触发条件
|
|
|
|
push:
|
2023-06-09 14:53:26 +08:00
|
|
|
paths:
|
|
|
|
- "mods/dr_game/**" # 本体修改
|
|
|
|
- ".github/workflows/**" # workflow 修改
|
2023-06-09 16:26:54 +08:00
|
|
|
- "requirements*" # 依赖修改
|
2023-05-14 01:41:03 +08:00
|
|
|
pull_request:
|
2023-06-09 14:53:26 +08:00
|
|
|
paths:
|
|
|
|
- "mods/dr_game/**" # 本体修改
|
|
|
|
- ".github/workflows/**" # workflow 修改
|
2023-06-09 16:26:54 +08:00
|
|
|
- "requirements*" # 依赖修改
|
2023-05-14 01:41:03 +08:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# 主任务
|
|
|
|
jobs:
|
2023-05-14 02:09:44 +08:00
|
|
|
build-dr-rs:
|
2023-05-14 02:26:11 +08:00
|
|
|
if: ${{!startsWith(github.event.ref, 'refs/tags/') && contains(github.event.head_commit.message, '[build rs skip]') == false }}
|
2023-05-14 01:41:03 +08:00
|
|
|
# 全都要!
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
2023-11-20 20:34:33 +08:00
|
|
|
python-version: ["3.8"] # 3.11 is now supported!, but just run 3.8
|
2023-05-14 01:41: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
|
|
|
|
|
|
|
|
# check out submodule
|
2023-11-20 20:34:33 +08:00
|
|
|
# - name: init submodule
|
|
|
|
# run: |
|
|
|
|
# git submodule init
|
|
|
|
# git submodule update
|
2023-05-14 01:41:03 +08:00
|
|
|
|
2023-08-27 01:52:45 +08:00
|
|
|
# 缓存 Rust 构建
|
|
|
|
- name: Cache rust
|
|
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
with:
|
2023-11-20 20:11:30 +08:00
|
|
|
workspaces: mods/dr_game/Difficult_Rocket_rs
|
2023-08-27 01:52:45 +08:00
|
|
|
key: dr_rs-v1
|
|
|
|
|
2023-05-14 01:41:03 +08:00
|
|
|
# 获取短 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
|
|
|
|
|
|
|
|
# 安装依赖
|
|
|
|
- name: Install env
|
|
|
|
run: |
|
|
|
|
pip install -r requirement-dev.txt
|
2023-12-02 10:25:35 +08:00
|
|
|
pip install libs/lib_not_dr
|
2023-05-14 01:41:03 +08:00
|
|
|
|
|
|
|
# 提取 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
|
2023-07-01 00:34:54 +08:00
|
|
|
cd ..
|
|
|
|
Remove-Item -Recurse -Force src
|
2023-05-14 01:41:03 +08:00
|
|
|
|
|
|
|
# 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: |
|
2023-07-01 00:34:54 +08:00
|
|
|
mods/dr_game
|