macOS support #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
push: | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest, macos-latest] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Install PIP Modules | ||
run: python -m pip install -r requirements.txt | ||
- name: Build Project (Dynamic build) | ||
if: matrix.os == 'windows-latest' | ||
run: pyinstaller --noconsole --name="Mario Party Toolkit" --add-data "assets/*;assets/" --distpath=dynamic --icon="assets/diceBlock.ico" main.py | ||
- name: Build Project (Static build) | ||
if: matrix.os == 'windows-latest' | ||
run: pyinstaller --onefile --noconsole --name="Mario Party Toolkit" --add-data "assets/*;assets/" --icon="assets/diceBlock.ico" main.py | ||
- name: Build Project (macOS build) | ||
if: matrix.os == 'macos-latest' | ||
run: pyinstaller --onefile --noconsole --name="Mario Party Toolkit" --add-data "assets/*:assets/" --icon="assets/diceBlock.ico" main.py | ||
- name: Purge Files (macOS build) | ||
if: matrix.os == 'macos-latest' | ||
run: rm /Users/runner/work/Mario-Party-Toolkit/Mario-Party-Toolkit/dist/MarioPartyToolkit | ||
- name: Upload Artifact | ||
if: matrix.os == 'windows-latest' | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: MarioPartyToolkit-win32-static | ||
path: D:\a\Mario-Party-Toolkit\Mario-Party-Toolkit\dist | ||
- name: Upload Artifact | ||
if: matrix.os == 'windows-latest' | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: MarioPartyToolkit-win32-dynamic | ||
path: D:\a\Mario-Party-Toolkit\Mario-Party-Toolkit\dynamic | ||
- name: Upload Artifact | ||
if: matrix.os == 'macos-latest' | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: MarioPartyToolkit-darwin | ||
path: /Users/runner/work/Mario-Party-Toolkit/Mario-Party-Toolkit/dist |