summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEmīls <emils@mullvad.net>2018-07-04 16:19:15 +0100
committerEmīls Piņķis <emils@mullvad.net>2018-07-05 16:05:05 +0100
commitfc728995e1494310830333c8da3324f71da36605 (patch)
tree06b0b3e31b1965917f62e614e966364cf170c5ed
parentaae3a587be492b649d076b18f180dd55e88a3c7c (diff)
downloadmullvadvpn-fc728995e1494310830333c8da3324f71da36605.tar.xz
mullvadvpn-fc728995e1494310830333c8da3324f71da36605.zip
Fix Appveyor's OpenSSL include path
-rw-r--r--appveyor.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 9a26b5104d..e6a0e0680f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -49,8 +49,12 @@ install:
# This is the "test phase", tweak it as you see fit
test_script:
- bash -x build_windows_modules.sh
- - cargo build
- - cargo test
+ - ps: >-
+ $Env:OPENSSL_STATIC = "1"
+ $Env:OPENSSL_LIB_DIR = $Env:APPVEYOR_BUILD_FOLDER\dist-assets\binaries\windows
+ $Env:OPENSSL_INCLUDE_DIR = $Env:APPVEYOR_BUILD_FOLDER\dist-assets\binaries\windows\include
+ cargo build
+ cargo test
# Stops feature branches from triggering two builds (One for branch and one for PR)
skip_branch_with_pr: true