From 26b01eb76051c30a2bacf9dfa4ecf21f7419ee4e Mon Sep 17 00:00:00 2001 From: holgern <holgernahrstaedt@gmx.de> Date: Tue, 7 Apr 2020 22:34:20 +0200 Subject: [PATCH] fix ci --- appveyor.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 04223dd4..ef0cc05e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -69,14 +69,14 @@ after_test: - cmd: pyinstaller pyinstaller\beempy-onefile.spec # package artifacts -- 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 pyinstaller\dist\beempy -- cmd: copy /Y C:\OpenSSL-Win64\bin\ssleay32.dll pyinstaller\dist\beempy -- cmd: copy /Y C:\OpenSSL-Win64\bin\libeay32.dll pyinstaller\dist\beempy +- cmd: copy /Y C:\OpenSSL-v111-Win64\bin\libcrypto-1_1-x64.dll dist\beempy +- cmd: copy /Y C:\OpenSSL-v111-Win64\bin\libssl-1_1-x64.dll dist\beempy +- cmd: copy /Y C:\OpenSSL-Win64\bin\ssleay32.dll dist\beempy +- cmd: copy /Y C:\OpenSSL-Win64\bin\libeay32.dll dist\beempy # - cmd: 7z a -衫x9 beempy.zip %APPVEYOR_BUILD_FOLDER%\dist\beempy #- ps: 7z a -m0=LZMA2 -mx9 $env:BUILD .\dist\beempy -- ps: 7z a $env:BUILD .\pyinstaller\dist\beempy -- ps: 7z a $env:BUILD2 .\pyinstaller\dist\beempy.exe +- ps: 7z a $env:BUILD .\dist\beempy +- ps: 7z a $env:BUILD2 .\dist\beempy.exe - ps: | # generate sha256 hashes (get-filehash $env:BUILD -algorithm SHA256).Hash | out-file ("{0}.sha256" -f $env:BUILD) -encoding ascii -- GitLab