mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-04-20 01:30:17 +00:00
Compare commits
3 Commits
1ec302d98c
...
d63d2f0d8b
Author | SHA1 | Date | |
---|---|---|---|
d63d2f0d8b | |||
3cd187fde3 | |||
cce918a121 |
35
.github/workflows/build-from-latest-dependency.yml
vendored
Normal file
35
.github/workflows/build-from-latest-dependency.yml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
name: Build UI from latest `arcaea-offline-*` dependencies
|
||||||
|
run-name: ${{ github.actor }} started a build request.
|
||||||
|
on: [workflow_dispatch]
|
||||||
|
jobs:
|
||||||
|
build-windows:
|
||||||
|
runs-on: windows-2022
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
|
||||||
|
# install dependencies
|
||||||
|
- run: 'pip install -r requirements.txt'
|
||||||
|
- run: 'pip uninstall arcaea-offline arcaea-offline-ocr -y'
|
||||||
|
- run: 'pip install git+https://github.com/283375/arcaea-offline'
|
||||||
|
- run: 'pip install git+https://github.com/283375/arcaea-offline-ocr'
|
||||||
|
- run: 'pip install nuitka imageio'
|
||||||
|
- name: Install UPX
|
||||||
|
uses: crazy-max/ghaction-upx@v3
|
||||||
|
with:
|
||||||
|
install-only: true
|
||||||
|
|
||||||
|
# release builtin files
|
||||||
|
- run: 'pyside6-lrelease.exe .\ui\resources\lang\en_US.ts .\ui\resources\lang\zh_CN.ts'
|
||||||
|
- run: 'python prebuild.py'
|
||||||
|
- run: 'pyside6-rcc.exe .\ui\resources\resources.qrc -o .\ui\resources\resources_rc.py'
|
||||||
|
|
||||||
|
# build
|
||||||
|
- run: 'python -m nuitka --plugin-enable=upx --enable-plugin=pyside6 --assume-yes-for-downloads --windows-icon-from-ico=./ui/resources/images/icon.png --standalone --onefile index.py'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: build-windows
|
||||||
|
path: index.exe
|
33
.github/workflows/build.yml
vendored
Normal file
33
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: Build UI
|
||||||
|
run-name: ${{ github.actor }} started a build request.
|
||||||
|
on: [workflow_dispatch]
|
||||||
|
jobs:
|
||||||
|
build-windows:
|
||||||
|
runs-on: windows-2022
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
cache: 'pip'
|
||||||
|
|
||||||
|
# install dependencies
|
||||||
|
- run: 'pip install -r requirements.txt'
|
||||||
|
- run: 'pip install nuitka imageio'
|
||||||
|
- name: Install UPX
|
||||||
|
uses: crazy-max/ghaction-upx@v3
|
||||||
|
with:
|
||||||
|
install-only: true
|
||||||
|
|
||||||
|
# release builtin files
|
||||||
|
- run: 'pyside6-lrelease.exe .\ui\resources\lang\en_US.ts .\ui\resources\lang\zh_CN.ts'
|
||||||
|
- run: 'python prebuild.py'
|
||||||
|
- run: 'pyside6-rcc.exe .\ui\resources\resources.qrc -o .\ui\resources\resources_rc.py'
|
||||||
|
|
||||||
|
# build
|
||||||
|
- run: 'python -m nuitka --plugin-enable=upx --enable-plugin=pyside6 --assume-yes-for-downloads --windows-icon-from-ico=./ui/resources/images/icon.png --standalone --onefile index.py'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: build-windows
|
||||||
|
path: index.exe
|
@ -40,7 +40,6 @@ def getBuildToolsVer():
|
|||||||
|
|
||||||
def writeVersionFile():
|
def writeVersionFile():
|
||||||
versionFile = Path("ui/resources/VERSION")
|
versionFile = Path("ui/resources/VERSION")
|
||||||
assert versionFile.exists()
|
|
||||||
|
|
||||||
versionText = (
|
versionText = (
|
||||||
"arcaea-offline-pyside-ui\n{gitDesc}\n{buildToolsVer}\n\n"
|
"arcaea-offline-pyside-ui\n{gitDesc}\n{buildToolsVer}\n\n"
|
||||||
|
@ -10,8 +10,8 @@ description = "No description."
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arcaea-offline==0.1.0",
|
"arcaea-offline==0.2.1",
|
||||||
"arcaea-offline-ocr==0.1.0",
|
"arcaea-offline-ocr==0.0.97",
|
||||||
"exif==1.6.0",
|
"exif==1.6.0",
|
||||||
"PySide6==6.5.2",
|
"PySide6==6.5.2",
|
||||||
]
|
]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
arcaea-offline==0.1.0
|
arcaea-offline==0.2.1
|
||||||
arcaea-offline-ocr==0.1.0
|
arcaea-offline-ocr==0.0.97
|
||||||
exif==1.6.0
|
exif==1.6.0
|
||||||
PySide6==6.5.2
|
PySide6==6.5.2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user