Skip to content

Commit

Permalink
Bulid windows binary in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sosthene-nitrokey authored and mmerklinger committed Sep 13, 2024
1 parent 634f485 commit e31db54
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,32 @@ jobs:
run: |
. venv/bin/activate
make check-typing
build-onefile:
name: Build onefile
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create virtual environment
run: |
python -m venv venv
.\venv\Scripts\Activate.ps1
.\venv\Scripts\pip install pip
.\venv\Scripts\pip install flit
.\venv\Scripts\flit install --symlink
- name: Create Windows version info file
run: |
.\venv\Scripts\Activate.ps1
create-version-file `
--outfile .\ci-scripts\windows\pyinstaller\file_version_info.txt `
--version "$(Get-Content .\pynitrokey\VERSION)" `
.\ci-scripts\windows\pyinstaller\file_version_info_metadata.yaml
- name: Build onefile
run: |
.\venv\Scripts\Activate.ps1
pyinstaller ci-scripts/windows/pyinstaller/pynitrokey-onefile.spec
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist\nitropy.exe

0 comments on commit e31db54

Please sign in to comment.