summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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