diff options
author | Richard Levitte <levitte@openssl.org> | 2016-06-02 17:37:26 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-06-21 14:52:34 +0200 |
commit | 14c4201958152392941615626da5d2800c98e943 (patch) | |
tree | 245e5361ec757b92a4d3c234dfbb6e6318674df1 /appveyor.yml | |
parent | Travis: When testing install, install docs as well (diff) | |
download | openssl-14c4201958152392941615626da5d2800c98e943.tar.xz openssl-14c4201958152392941615626da5d2800c98e943.zip |
Appveyor: test install as well, via a fake deploy_script
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 46eaf3978b..c668b3941e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -27,13 +27,27 @@ before_build: } - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS")) - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM% - - perl Configure %TARGET% no-asm %SHARED% + - mkdir _build + - cd _build + - perl ..\Configure %TARGET% no-asm %SHARED% + - cd .. build_script: + - cd _build - nmake + - cd .. test_script: + - cd _build - nmake test + - cd .. + +# Fake deploy script to test installation +deploy_script: + - mkdir _install + - cd _build + - nmake install install_docs DESTDIR=..\_install + - cd .. notifications: - provider: Email |