Skip to content

Commit

Permalink
Added a new PyInstaller CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Oct 24, 2023
1 parent 0b2f2a1 commit 74cc929
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: pyinstaller-build
on:
workflow_dispatch:
inputs:
type:
description: 'Whether to build a single file (onefile) or directory (dir) dist'
required: true
default: 'dir'
jobs:
build-linux:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.10'
# - uses: conda-incubator/setup-miniconda@v2
# with:
# miniconda-version: "latest"
# auto-update-conda: true
# python-version: 3.8
# activate-environment: test
- name: Install dependencies
run: |
pip install --upgrade pip
pip --version
pip install -e .
pip install pyinstaller
pip install path
- name: Run PyInstaller build
run: |
pyinstaller pyinstaller.spec ${{ github.event.inputs.type }}
- uses: actions/upload-artifact@v2
with:
name: cq-cli-Linux-x86_64
path: dist

0 comments on commit 74cc929

Please sign in to comment.