mirror of
https://github.com/NinjaCheetah/WiiPy.git
synced 2026-02-17 02:25:39 -05:00
Added tmd edit command to change properties of a TMD file, same options as wad edit
Stubbed theme command temporarily as it will not be part of WiiPy v1.4.0. Workflow also adjusted to build for x86_64 and arm64 on macOS
This commit is contained in:
37
.github/workflows/python-build.yaml
vendored
37
.github/workflows/python-build.yaml
vendored
@@ -39,9 +39,9 @@ jobs:
|
||||
uses: actions/upload-artifact@v4.3.0
|
||||
with:
|
||||
path: ~/WiiPy.tar
|
||||
name: WiiPy-linux-bin
|
||||
name: WiiPy-Linux-bin
|
||||
|
||||
build-macos:
|
||||
build-macos-x86_64:
|
||||
|
||||
runs-on: macos-latest
|
||||
|
||||
@@ -56,7 +56,7 @@ jobs:
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
- name: Build Application
|
||||
run: make all
|
||||
run: ARCH_FLAGS=--macos-target-arch=x86_64 make all
|
||||
- name: Prepare Package for Upload
|
||||
run: |
|
||||
mv wiipy ~/wiipy
|
||||
@@ -66,7 +66,34 @@ jobs:
|
||||
uses: actions/upload-artifact@v4.3.0
|
||||
with:
|
||||
path: ~/WiiPy.tar
|
||||
name: WiiPy-macos-bin
|
||||
name: WiiPy-macOS-x86_64-bin
|
||||
|
||||
build-macos-arm64:
|
||||
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python 3.12
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.12"
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
- name: Build Application
|
||||
run: ARCH_FLAGS=--macos-target-arch=arm64 make all
|
||||
- name: Prepare Package for Upload
|
||||
run: |
|
||||
mv wiipy ~/wiipy
|
||||
cd ~
|
||||
tar cvf WiiPy.tar wiipy
|
||||
- name: Upload Application
|
||||
uses: actions/upload-artifact@v4.3.0
|
||||
with:
|
||||
path: ~/WiiPy.tar
|
||||
name: WiiPy-macOS-arm64-bin
|
||||
|
||||
build-windows:
|
||||
|
||||
@@ -90,4 +117,4 @@ jobs:
|
||||
uses: actions/upload-artifact@v4.3.0
|
||||
with:
|
||||
path: D:\a\WiiPy\WiiPy\wiipy.exe
|
||||
name: WiiPy-windows-bin
|
||||
name: WiiPy-Windows-bin
|
||||
|
||||
Reference in New Issue
Block a user