[Openvpn-devel] travis: add Visual Studio build
Commit Message
From: Lev Stipakov <lev@openvpn.net>
I had to remove output redirect from build-deps.sh
to file, because building OpenSSL on Windows takes
some time, and travis aborts job if there is no output
for more than 10 minutes.
Signed-off-by: Lev Stipakov <lev@openvpn.net>
---
Please note, that in order this to work, following patches have to be merged:
- https://github.com/OpenVPN/openvpn-build/pull/157
- https://patchwork.openvpn.net/patch/867/
.travis.yml | 9 ++++++++-
.travis/build-check.sh | 5 +++++
.travis/build-deps.sh | 9 +++++++++
3 files changed, 22 insertions(+), 1 deletion(-)
Comments
Hi,
Please note, that in order this to work, following patches have to be
> merged:
>
> - https://github.com/OpenVPN/openvpn-build/pull/157
> - https://patchwork.openvpn.net/patch/867/
Since all prerequisites have been merged, this patch is good to go.
Here is a link to a travis build, which has this patch applied on top of
latest master (commit 27784432):
https://travis-ci.org/lstipakov/openvpn/builds/606692112
Everything is green, including newly added Visual Studio build.
@@ -24,6 +24,13 @@ env:
matrix:
include:
+ - env:
+ - SSLLIB="openssl"
+ - OPENSSL_VERSION="1.1.1d"
+ - P7Z="c:\Program Files\7-Zip\7z.exe"
+ - CC="cl"
+ os: windows
+ compiler: cl
- env: SSLLIB="openssl" RUN_COVERITY="1"
os: linux
compiler: gcc
@@ -89,7 +96,7 @@ cache:
install:
- if [ ! -z "${CHOST}" ]; then unset CC; fi
- - .travis/build-deps.sh > build-deps.log 2>&1 || (cat build-deps.log && exit 1)
+ - .travis/build-deps.sh
before_script:
- .travis/coverity.sh
@@ -1,6 +1,11 @@
#!/bin/sh
set -eux
+if [ "${TRAVIS_OS_NAME}" = "windows" ]; then
+ PATH="/c/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/MSBuild/15.0/Bin/":$PATH
+ MSBuild.exe openvpn.sln //p:Platform=x64 && exit 0
+fi
+
if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
export LD_LIBRARY_PATH="${PREFIX}/lib:${LD_LIBRARY_PATH:-}"
fi
@@ -1,6 +1,15 @@
#!/bin/sh
set -eux
+if [ "${TRAVIS_OS_NAME}" = "windows" ]; then
+ choco install strawberryperl nasm
+ cd ..
+ git clone https://github.com/openvpn/openvpn-build.git
+ cd openvpn-build
+ PATH="/c/Strawberry/perl/bin:":$PATH MODE=DEPS msvc/build.bat
+ exit 0
+fi
+
# Set defaults
PREFIX="${PREFIX:-${HOME}/opt}"