From 1266bb092896cccce3751f129adce02107f5bd76 Mon Sep 17 00:00:00 2001 From: Lukas Holecek Date: Tue, 19 Sep 2023 18:14:11 +0200 Subject: [PATCH] Windows: Test Encryption with the latest version of gpg4win --- appveyor.yml | 1 + utils/appveyor/after_build.sh | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 0f6fc19b0c..508fe6b34c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -29,6 +29,7 @@ environment: LIBSSL: libssl-1_1-x64.dll LIBCRYPTO: libcrypto-1_1-x64.dll WITH_NATIVE_NOTIFICATIONS: "ON" + GPGPATH: /c/Program Files/Git/usr/bin # Parameters for default build commands (build_script is used instead). build: diff --git a/utils/appveyor/after_build.sh b/utils/appveyor/after_build.sh index b5ce982c6a..15195aa4d7 100644 --- a/utils/appveyor/after_build.sh +++ b/utils/appveyor/after_build.sh @@ -63,13 +63,23 @@ rm -vf /c/Windows/System32/libssl-* rm -vf /c/Windows/SysWOW64/libcrypto-* rm -vf /c/Windows/SysWOW64/libssl-* OldPath=$PATH -export PATH=$Destination +export PATH="$GPGPATH":$Destination +gpg --version export QT_FORCE_STDERR_LOGGING=1 export COPYQ_TESTS_RERUN_FAILED=1 "$Executable" --help "$Executable" --version "$Executable" --info + +COPYQ_LOG_LEVEL=TRACE "$Executable" --start-server - <