File tree Expand file tree Collapse file tree 3 files changed +4
-18
lines changed
ci-scripts/windows/pyinstaller Expand file tree Collapse file tree 3 files changed +4
-18
lines changed Original file line number Diff line number Diff line change 4646 - name : Build onedir
4747 run : |
4848 Invoke-Expression "$(poetry env info --path)\Scripts\Activate.ps1"
49- make build-ui
5049 pyinstaller ci-scripts/windows/pyinstaller/nitrokey-app-onedir.spec
5150 - name : Upload artifacts
5251 uses : actions/upload-artifact@v4
7473 - name : Build onefile
7574 run : |
7675 Invoke-Expression "$(poetry env info --path)\Scripts\Activate.ps1"
77- make build-ui
7876 pyinstaller ci-scripts/windows/pyinstaller/nitrokey-app-onefile.spec
7977 - name : Upload artifacts
8078 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -5,17 +5,14 @@ import os
55venv_path = os .popen ('poetry env info --path' ).read ().rstrip ()
66
77datas = [
8- (venv_path + '\\ Lib\\ site-packages\\ pynitrokey\\ VERSION' , 'pynitrokey' ),
98 (venv_path + '\\ Lib\\ site-packages\\ fido2\\ public_suffix_list.dat' , 'fido2' ),
109 ('..\\ ..\\ ..\\ nitrokeyapp\\ ui' , 'nitrokeyapp\\ ui' ),
1110 ('..\\ ..\\ ..\\ LICENSE' , '.' )
1211]
1312datas += copy_metadata ('ecdsa' )
1413datas += copy_metadata ('fido2' )
1514datas += copy_metadata ('nitrokeyapp' )
16- datas += copy_metadata ('pynitrokey' )
17- datas += copy_metadata ('pyusb' )
18- datas += copy_metadata ('spsdk' )
15+ datas += copy_metadata ('nitrokey' )
1916
2017
2118block_cipher = None
@@ -24,10 +21,7 @@ block_cipher = None
2421a = Analysis (
2522 ['..\\ ..\\ ..\\ nitrokeyapp\\ __main__.py' ],
2623 pathex = [],
27- binaries = [
28- (venv_path + '\\ Lib\\ site-packages\\ libusbsio\\ bin\\ x64\\ libusbsio.dll' , 'libusbsio' ),
29- (venv_path + '\\ Lib\\ site-packages\\ usb1\\ libusb-1.0.dll' , '.' )
30- ],
24+ binaries = [],
3125 datas = datas ,
3226 hiddenimports = [],
3327 hookspath = [],
Original file line number Diff line number Diff line change @@ -5,17 +5,14 @@ import os
55venv_path = os .popen ('poetry env info --path' ).read ().rstrip ()
66
77datas = [
8- (venv_path + '\\ Lib\\ site-packages\\ pynitrokey\\ VERSION' , 'pynitrokey' ),
98 (venv_path + '\\ Lib\\ site-packages\\ fido2\\ public_suffix_list.dat' , 'fido2' ),
109 ('..\\ ..\\ ..\\ nitrokeyapp\\ ui' , 'nitrokeyapp\\ ui' ),
1110 ('..\\ ..\\ ..\\ LICENSE' , '.' )
1211]
1312datas += copy_metadata ('ecdsa' )
1413datas += copy_metadata ('fido2' )
1514datas += copy_metadata ('nitrokeyapp' )
16- datas += copy_metadata ('pynitrokey' )
17- datas += copy_metadata ('pyusb' )
18- datas += copy_metadata ('spsdk' )
15+ datas += copy_metadata ('nitrokey' )
1916
2017
2118block_cipher = None
@@ -24,10 +21,7 @@ block_cipher = None
2421a = Analysis (
2522 ['..\\ ..\\ ..\\ nitrokeyapp\\ __main__.py' ],
2623 pathex = [],
27- binaries = [
28- (venv_path + '\\ Lib\\ site-packages\\ libusbsio\\ bin\\ x64\\ libusbsio.dll' , 'libusbsio' ),
29- (venv_path + '\\ Lib\\ site-packages\\ usb1\\ libusb-1.0.dll' , '.' )
30- ],
24+ binaries = [],
3125 datas = datas ,
3226 hiddenimports = [],
3327 hookspath = [],
You can’t perform that action at this time.
0 commit comments