From c54376285858cceb288da5c2a58b850cc72738a3 Mon Sep 17 00:00:00 2001 From: Alexandro Sanchez Bach Date: Sun, 18 Nov 2018 23:11:49 +0100 Subject: [PATCH] Added tests and 32-bit targets to haxm-windows Travis script Signed-off-by: Alexandro Sanchez Bach --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 18197cae..841ec708 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,8 @@ matrix: os: windows install: - choco install -y nuget.commandline - - choco install -y windowsdriverkit10 + - choco install -y windowsdriverkit10 --version 10.0.17763 + - choco install -y windows-sdk-10.1 --version 10.1.17763.1 script: - cd platforms/windows - nuget restore @@ -44,4 +45,7 @@ matrix: # but since those are not supported by TravisCI, we need to install targets manually. - unzip "/c/Program Files (x86)/Windows Kits/10/Vsix/WDK.vsix" -d wdk - cp -R wdk/\$VCTargets/* "$MSVC/Common7/IDE/VC/VCTargets" - - MSBuild.exe haxm-windows.vcxproj //p:Configuration="Debug" //p:Platform="x64" + - export PROPS="//p:DefaultWindowsSDKVersion=10.0.17763.0 //p:SpectreMitigation=false" + - MSBuild.exe haxm.sln $PROPS //p:Configuration="Debug" //p:Platform="Win32" + - MSBuild.exe haxm.sln $PROPS //p:Configuration="Debug" //p:Platform="x64" + - build/tests/x64/haxm-tests.exe