mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +00:00
362287543b
* Update actions * Use fpm instead of stdeb * Specify python3 as a dependency Let's hope we can soon auto-update this version number
88 lines
1.9 KiB
YAML
88 lines
1.9 KiB
YAML
name: Python
|
|
|
|
on:
|
|
push:
|
|
branches: [ '*' ]
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
|
|
jobs:
|
|
pyinstaller:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: ['ubuntu-20.04', 'windows-2019', 'macos-11']
|
|
fail-fast: false
|
|
max-parallel: 3
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.9'
|
|
|
|
- name: Legendary dependencies and build tools
|
|
run: pip3 install --upgrade
|
|
setuptools
|
|
pyinstaller
|
|
requests
|
|
|
|
- name: Optional dependencies (WebView)
|
|
run: pip3 install --upgrade pywebview
|
|
if: runner.os != 'macOS'
|
|
|
|
- name: Set strip option on non-Windows
|
|
id: strip
|
|
run: echo ::set-output name=option::--strip
|
|
if: runner.os != 'Windows'
|
|
|
|
- name: Build
|
|
working-directory: legendary
|
|
run: pyinstaller
|
|
--onefile
|
|
--name legendary
|
|
${{ steps.strip.outputs.option }}
|
|
-i ../assets/windows_icon.ico
|
|
cli.py
|
|
env:
|
|
PYTHONOPTIMIZE: 1
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: ${{ runner.os }}-package
|
|
path: legendary/dist/*
|
|
|
|
deb:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Dependencies
|
|
run: |
|
|
sudo apt install ruby
|
|
sudo gem install fpm
|
|
|
|
- name: Build
|
|
run: fpm
|
|
--input-type python
|
|
--output-type deb
|
|
--python-package-name-prefix python3
|
|
--deb-suggests python3-webview
|
|
--maintainer "Rodney <rodney@rodney.io>"
|
|
--category python
|
|
--depends "python3 >= 3.9"
|
|
setup.py
|
|
|
|
- name: Os version
|
|
id: os_version
|
|
run: |
|
|
source /etc/os-release
|
|
echo ::set-output name=version::$NAME-$VERSION_ID
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: ${{ steps.os_version.outputs.version }}-deb-package
|
|
path: ./*.deb
|