82 lines
1.8 KiB
YAML
82 lines
1.8 KiB
YAML
name: Package
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-macos:
|
|
|
|
runs-on: macos-latest
|
|
timeout-minutes: 15
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.9]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Build .app
|
|
run: |
|
|
build/build-macos.sh
|
|
zip -r build/output/BAPSicle.zip build/output/BAPSicle.app
|
|
- name: Archive Build
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Package - MacOS
|
|
path: |
|
|
build/output/BAPSicle.zip
|
|
|
|
build-ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.7]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Build executable
|
|
run: |
|
|
build/build-linux.sh
|
|
- name: Archive Build
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Package - Ubuntu
|
|
path: |
|
|
build/output/BAPSicle
|
|
|
|
build-windows:
|
|
|
|
runs-on: windows-latest
|
|
timeout-minutes: 15
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.9]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Build .exe
|
|
run: |
|
|
build/build-windows.bat
|
|
- name: Archive Build
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Package - Windows
|
|
path: |
|
|
build/output/BAPSicle.exe
|
|
install/
|
|
|
|
|