Compare commits

..

No commits in common. "8ac9d29d06a411fa462a67164a0151720de580cf" and "29bc3ef8bc9a2c62867678a316792867bd0cc1ba" have entirely different histories.

3 changed files with 7 additions and 12 deletions

View File

@ -86,7 +86,7 @@ jobs:
- name: Build by nuitka
shell: pwsh
run: |
python -m lndl_nuitka . -y -github
python -m lndl_nuitka . -y
# 集成的构建脚本 好耶!
# 获取短 sha
@ -105,4 +105,4 @@ jobs:
with:
name: Difficult-Rocket_v${{env.DR_version}}-${{runner.os}}${{matrix.python-version}}-Build.${{github.run_number}}+${{env.short_sha}}.zip
path: |
build/DR.dist
build/github/DR.dist

View File

@ -74,7 +74,7 @@ jobs:
- name: Build by nuitka
shell: pwsh
run: |
python -m lndl_nuitka . -y -github
python -m lndl_nuitka . -y
# 集成的构建脚本 好耶!
# 编译 dr_rs
@ -94,7 +94,7 @@ jobs:
with:
name: DR_full_v${{env.DR_version}}-${{runner.os}}${{matrix.python-version}}
path: |
build/DR.dist
build/github/DR.dist
mods/dr_game
Zip-All:

View File

@ -4,7 +4,6 @@
# All rights reserved
# -------------------------------
import sys
import platform
from Difficult_Rocket import sdk_version, build_version
@ -53,10 +52,8 @@ def gen_pyglet_no_follow_import() -> list:
return no_follow_import
is_github = "-github" in sys.argv
def main(config: raw_config_type) -> nuitka_config_type:
print("debug", config)
config = config["cli"]
if platform.system() == "Darwin":
config.pop("windows-icon-from-ico")
@ -73,9 +70,7 @@ def main(config: raw_config_type) -> nuitka_config_type:
config["macos-app-version"] = str(sdk_version)
config["nofollow-import-to"] += gen_pyglet_no_follow_import()
if is_github:
config["output-dir"] = "./build"
else:
config["output-dir"] = "./build/nuitka-" + platform.system().lower()
config["output-dir"] = "./build/nuitka-" + platform.system().lower()
print("done", config)
return config