Skip to content
Snippets Groups Projects
Commit 603c94f3 authored by Holger's avatar Holger
Browse files

Fix ci and installer

parent 26c9b1d3
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
...@@ -69,14 +69,14 @@ after_test: ...@@ -69,14 +69,14 @@ after_test:
- cmd: pyinstaller pyinstaller\beempy-onefile.spec - cmd: pyinstaller pyinstaller\beempy-onefile.spec
# package artifacts # package artifacts
- cmd: copy /Y C:\OpenSSL-v111-Win64\bin\libcrypto-1_1-x64.dll dist\beempy - cmd: copy /Y C:\OpenSSL-v111-Win64\bin\libcrypto-1_1-x64.dll pyinstaller\dist\beempy
- cmd: copy /Y C:\OpenSSL-v111-Win64\bin\libssl-1_1-x64.dll dist\beempy - cmd: copy /Y C:\OpenSSL-v111-Win64\bin\libssl-1_1-x64.dll pyinstaller\dist\beempy
- cmd: copy /Y C:\OpenSSL-Win64\bin\ssleay32.dll dist\beempy - cmd: copy /Y C:\OpenSSL-Win64\bin\ssleay32.dll pyinstaller\dist\beempy
- cmd: copy /Y C:\OpenSSL-Win64\bin\libeay32.dll dist\beempy - cmd: copy /Y C:\OpenSSL-Win64\bin\libeay32.dll pyinstaller\dist\beempy
# - cmd: 7z a -mx9 beempy.zip %APPVEYOR_BUILD_FOLDER%\dist\beempy # - cmd: 7z a -mx9 beempy.zip %APPVEYOR_BUILD_FOLDER%\dist\beempy
#- ps: 7z a -m0=LZMA2 -mx9 $env:BUILD .\dist\beempy #- ps: 7z a -m0=LZMA2 -mx9 $env:BUILD .\dist\beempy
- ps: 7z a $env:BUILD .\dist\beempy - ps: 7z a $env:BUILD .\pyinstaller\dist\beempy
- ps: 7z a $env:BUILD2 .\dist\beempy.exe - ps: 7z a $env:BUILD2 .\pyinstaller\dist\beempy.exe
- ps: | # generate sha256 hashes - ps: | # generate sha256 hashes
(get-filehash $env:BUILD -algorithm SHA256).Hash | out-file ("{0}.sha256" -f $env:BUILD) -encoding ascii (get-filehash $env:BUILD -algorithm SHA256).Hash | out-file ("{0}.sha256" -f $env:BUILD) -encoding ascii
......
...@@ -21,7 +21,7 @@ analysis_data = [ ...@@ -21,7 +21,7 @@ analysis_data = [
(websocket_cacert_file_path, join('.', basename(websocket_lib_path))) (websocket_cacert_file_path, join('.', basename(websocket_lib_path)))
] ]
a = Analysis(['beem/cli.py'], a = Analysis(['../beem/cli.py'],
pathex=['beem'], pathex=['beem'],
binaries=binaries, binaries=binaries,
datas=analysis_data, datas=analysis_data,
......
...@@ -22,7 +22,7 @@ analysis_data = [ ...@@ -22,7 +22,7 @@ analysis_data = [
] ]
a = Analysis(['beem/cli.py'], a = Analysis(['../beem/cli.py'],
pathex=['beem'], pathex=['beem'],
binaries=binaries, binaries=binaries,
datas=analysis_data, datas=analysis_data,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment