109 lines
2.9 KiB
YAML
109 lines
2.9 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'release'
|
|
tags-ignore:
|
|
- '*'
|
|
|
|
jobs:
|
|
|
|
build-win64:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10.8'
|
|
- name: Upgrade pip and enable wheel support
|
|
run: python -m pip install --upgrade pip setuptools wheel
|
|
- name: Install Requirements
|
|
run: |
|
|
pip install -r requirements.txt
|
|
pip install pyinstaller
|
|
shell: bash
|
|
- name: Build
|
|
run: |
|
|
powershell -File build-win.ps1
|
|
mv inno-output\gotify-tray-installer.exe gotify-tray-installer-win.exe
|
|
shell: cmd
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: gotify-tray-installer-win.exe
|
|
path: gotify-tray-installer-win.exe
|
|
|
|
build-ubuntu:
|
|
strategy:
|
|
matrix:
|
|
tag: [jammy]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10.8'
|
|
- name: Upgrade pip and enable wheel support
|
|
run: python -m pip install --upgrade pip setuptools wheel
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.0'
|
|
- name: Build
|
|
run: |
|
|
pip install -r requirements.txt
|
|
pip install pyinstaller
|
|
gem install fpm
|
|
chmod +x build-linux.sh
|
|
./build-linux.sh deb
|
|
mv "dist/gotify-tray_${{github.ref_name}}_amd64.deb" "gotify-tray_${{github.ref_name}}_amd64_${{ matrix.tag }}.deb"
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
path: "gotify-tray_*_amd64_${{ matrix.tag }}.deb"
|
|
|
|
|
|
build-macos:
|
|
runs-on: macos-12
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10.8'
|
|
- name: Upgrade pip and enable wheel support
|
|
run: python -m pip install --upgrade pip setuptools wheel
|
|
- name: Build
|
|
run: |
|
|
make build-macos
|
|
brew install create-dmg
|
|
create-dmg --volname "Gotify Tray" --app-drop-link 0 0 --no-internet-enable "gotify-tray.dmg" "./dist/Gotify Tray.app"
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: gotify-tray.dmg
|
|
path: gotify-tray.dmg
|
|
|
|
build-pip:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10.8'
|
|
- name: Upgrade pip and enable wheel support
|
|
run: python -m pip install --upgrade pip setuptools wheel
|
|
- name: install requirements
|
|
run: |
|
|
pip install -r requirements.txt
|
|
pip install build
|
|
- name: create pip package
|
|
run: python -m build
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
path: dist/gotify_tray-*.whl
|