Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OpenSSL .dlls to enable https requests #1216

Merged
merged 1 commit into from May 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 15 additions & 1 deletion appveyor.yml
Expand Up @@ -4,6 +4,7 @@ configuration:
environment:
MSBUILD_FLAGS: /verbosity:minimal
FFMPEG_VERSION: 4.1.1
OPENSSL_VERSION: 1.0.2r
matrix:

# MSVC x86
Expand Down Expand Up @@ -74,7 +75,13 @@ after_build:
echo "move ffmpeg.exe and delete ffmpeg leftovers" &
del bin\plugins\ffmpeg-%FFMPEG_VERSION%-win32-static.zip &
move /y bin\plugins\ffmpeg-%FFMPEG_VERSION%-win32-static\bin\ffmpeg.exe bin\plugins &
rmdir /q /s bin\plugins\ffmpeg-%FFMPEG_VERSION%-win32-static &
echo "Copying OpenSSL binaries" &
call curl.exe -o bin\openssl-%OPENSSL_VERSION%-i386-win32.zip "https://indy.fulgan.com/SSL/openssl-%OPENSSL_VERSION%-i386-win32.zip" &
call 7z.exe x bin\openssl-%OPENSSL_VERSION%-i386-win32.zip -o"bin\" &
del bin\openssl-%OPENSSL_VERSION%-i386-win32.zip &
move /y bin\openssl-%OPENSSL_VERSION%-i386-win32\libeay32.dll bin\ &
move /y bin\openssl-%OPENSSL_VERSION%-i386-win32\ssleay32.dll bin\ &
rmdir /q /sbin\openssl-%OPENSSL_VERSION%-i386-win32 &
echo "copying qt libraries" &
windeployqt bin\pencil2d.exe &
echo "zipping" &
Expand Down Expand Up @@ -107,6 +114,13 @@ after_build:
del bin\plugins\ffmpeg-%FFMPEG_VERSION%-win64-static.zip &
move /y bin\plugins\ffmpeg-%FFMPEG_VERSION%-win64-static\bin\ffmpeg.exe bin\plugins &
rmdir /q /s bin\plugins\ffmpeg-%FFMPEG_VERSION%-win64-static &
echo "Copying OpenSSL binaries" &
call curl.exe -o bin\openssl-%OPENSSL_VERSION%-x64_86-win64.zip "https://indy.fulgan.com/SSL/openssl-%OPENSSL_VERSION%-x64_86-win64.zip" &
call 7z.exe x bin\openssl-%OPENSSL_VERSION%-x64_86-win64.zip -o"bin\" &
del bin\openssl-%OPENSSL_VERSION%-x64_86-win64.zip &
move /y bin\openssl-%OPENSSL_VERSION%-x64_86-win64\libeay32.dll bin\ &
move /y bin\openssl-%OPENSSL_VERSION%-x64_86-win64\ssleay32.dll bin\ &
rmdir /q /s bin\plugins\ffmpeg-%FFMPEG_VERSION%-win64-static &
echo "copying qt libraries" &
windeployqt bin\pencil2d.exe &
echo "zipping" &
Expand Down