Add GH Actions CI (#58)

* Add Pyinstaller CI

* Add --onefile to Pyinstaller

* Try windows Pyinstaller

* Use python3.8 for Pyinstaller

* Try matrix

* Use bash to install pip packages

* Remove sudo for pip

* Add dependencies and strip if not using windows
This commit is contained in:
Alberto Oporto Ames 2020-06-16 15:05:22 -05:00 committed by GitHub
parent bfbd86b01c
commit 7a8652be99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

49
.github/workflows/python.yml vendored Normal file
View file

@ -0,0 +1,49 @@
name: Python
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
pyinstaller:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-20.04', 'windows-latest']
fail-fast: true
max-parallel: 3
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Dependencies
run: pip3 install --upgrade
pyinstaller
requests
setuptools
wheel
- name: Strip
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 }}
cli.py
- uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-package
path: legendary/dist/*