Skip to content

Commit

Permalink
Create pyinstaller.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Jul 23, 2024
1 parent 3cdebb5 commit 0e18485
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: pyinstaller
on:
push:
branches: ["main"]
paths-ignore:
- .*
- .*/**
- demos/**
- docs/**
- .git*
- CONTRIBUTING.md
- LICENSE
- README.md
- "!.github/workflows/pyinstaller.yml"
pull_request:
paths-ignore:
- .*
- .*/**
- demos/**
- docs/**
- .git*
- CONTRIBUTING.md
- LICENSE
- README.md
- "!.github/workflows/pyinstaller.yml"
workflow_call:
concurrency:
# When run via `workflow_call` the `github.workflow` and `github.ref` are the
# same as the parent so we need a differentiation suffix.
group: ${{ github.workflow }}-${{ github.ref }}-pyinstaller
cancel-in-progress: true
jobs:
pyinstaller:
strategy:
fail-fast: false
matrix:
include:
# https://packaging.python.org/en/latest/specifications/platform-compatibility-tags/#platform-tag
# https://pypi.org/project/pyinstaller/#files
- { os: ubuntu-20.04, target: manylinux2014_x86_64 }
- { os: macos-13, target: macosx_10_13_universal2 }
- { os: windows-latest, target: win_amd64 }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install pipx
- run: pipx install pipenv
- run: pipenv install --dev -e .
- run: pipenv install pyinstaller
- run: pipenv run bikeshed update
- run: pipenv run pyinstaller -y --collect-data=bikeshed --name=bikeshed ./bikeshed.py # bikeshed/__main__.py
- uses: actions/upload-artifact@v4
with:
name: bikeshed-${{ matrix.target }}
path: dist/bikeshed

0 comments on commit 0e18485

Please sign in to comment.