Skip to content

Commit

Permalink
Test with pyinstaller bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Jan 21, 2025
1 parent efd1c0f commit 3de8766
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
run: |
pyinstaller --name ccompass_bundle_onefile --onefile --windowed -p . $(which ccompass)
- name: Verify artifact presence
run: pwd && ls -alh dist/

- name: Test the bundle
run: dist/ccompass_bundle_onefile --version

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -93,6 +99,13 @@ jobs:
--hidden-import numpy.core.multiarray
shell: bash

- name: Verify artifact presence
run: pwd && ls -alh dist/
shell: bash

- name: Test the bundle
run: dist/ccompass_bundle_onefile.exe --version

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -129,6 +142,12 @@ jobs:
run: |
pyinstaller --name ccompass_bundle_onefile --onefile --windowed -p . $(which ccompass)
- name: Verify artifact presence
run: pwd && ls -alh dist/

- name: Test the bundle
run: dist/ccompass_bundle_onefile --version

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 3de8766

Please sign in to comment.