-
Notifications
You must be signed in to change notification settings - Fork 127
67 lines (52 loc) · 1.57 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.6'
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run unit tests
run: poetry run pytest -v
- name: Build
run: poetry build
- name: Install from tar.gz
shell: bash
run: |
python -m pip install --upgrade pip
pip install dist/*.tar.gz
ykman --version
[[ -z "$(ykman --version | grep -E "not found|missing")" ]]
pip uninstall -y yubikey-manager
- name: Install from wheel
shell: bash
run: |
pip install dist/*.whl
ykman --version
[[ -z "$(ykman --version | grep -E "not found|missing")" ]]
pip uninstall -y yubikey-manager
- name: PyInstaller
shell: bash
run: |
poetry run pyinstaller ykman.spec
dist/ykman/ykman.exe --version
[[ -z "$(dist/ykman/ykman.exe --version | grep -E "not found|missing")" ]]
- name: Copy scripts
shell: bash
run: cp -r resources/win dist/scripts
- name: Build installer
working-directory: ./dist
run: .\scripts\make_msi.ps1
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: ykman-builds-windows
path: dist