From: Lev Stipakov Date: Sat, 9 Nov 2019 16:40:11 +0000 (+0200) Subject: travis: bump MSVC to 2019 X-Git-Tag: v2.5_beta1~245 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8b3f1177e48678e3bbe955634fe412d5515fab0;p=thirdparty%2Fopenvpn.git travis: bump MSVC to 2019 Since we changed MSVC version in project files to 2019, we have to do the same in travis script. Signed-off-by: Lev Stipakov Acked-by: Simon Rozman Message-Id: <1573317611-6462-1-git-send-email-lstipakov@gmail.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg19074.html Signed-off-by: Gert Doering --- diff --git a/.travis/build-check.sh b/.travis/build-check.sh index d2d2e8afb..039a7dcfd 100755 --- a/.travis/build-check.sh +++ b/.travis/build-check.sh @@ -2,7 +2,7 @@ set -eux if [ "${TRAVIS_OS_NAME}" = "windows" ]; then - PATH="/c/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/MSBuild/15.0/Bin/":$PATH + PATH="/c/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/MSBuild/Current/Bin/":$PATH MSBuild.exe openvpn.sln //p:Platform=x64 && exit 0 fi diff --git a/.travis/build-deps.sh b/.travis/build-deps.sh index 724ff30da..4c5cb05e7 100755 --- a/.travis/build-deps.sh +++ b/.travis/build-deps.sh @@ -3,6 +3,8 @@ set -eux if [ "${TRAVIS_OS_NAME}" = "windows" ]; then choco install strawberryperl nasm + choco install visualstudio2019buildtools --package-parameters "--includeRecommended --includeOptional" + choco install visualstudio2019-workload-vctools cd .. git clone https://github.com/openvpn/openvpn-build.git cd openvpn-build