Update appveyor

Build the driver, the devmsi library and the msi with Visual Studio 2015.
This commit is contained in:
Nick Russler
2016-11-10 12:05:20 +01:00
committed by Frank Morgner
parent de515d80d2
commit 493d48c5aa

View File

@@ -2,35 +2,20 @@ platform:
- x86 - x86
- x64 - x64
environment: os: Visual Studio 2015
matrix:
- VSVER: 14
- VSVER: 12
- VSVER: 10
matrix:
allow_failures:
# The imported project "C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\WDKConversion\PreConfiguration.props" was not found.
- platform: x86
VSVER: 10
install: install:
- date /T & time /T - date /T & time /T
- ps: >- - ps: >-
If ($env:Platform -Match "x86") { If ($env:Platform -Match "x86") {
$env:VCVARS_PLATFORM="x86" $env:MSBUILD_PLATFORM="x86"
$env:MSBUILD_PLATFORM="Win32"
} Else { } Else {
$env:VCVARS_PLATFORM="amd64"
$env:MSBUILD_PLATFORM="x64" $env:MSBUILD_PLATFORM="x64"
} }
- ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS")) - git submodule update --init --recursive
- echo "Using Visual Studio %VSVER%.0 at %VSCOMNTOOLS%"
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM% # BUGFIX: wdf directory was renamed to 00wdf, rename it back (see github.com/appveyor/ci/issues/414)
- ps: $env:PATH="${env:ProgramFiles(x86)}\Windows Kits\8.1\bin\x86;${env:PATH}" - ps: ren 'C:\Program Files (x86)\Windows Kits\10\include\00wdf' 'wdf'
- NMake2MSBuild.exe virtualsmartcard\win32\BixVReader\WinXP\sources
- ProjectUpgradeTool.exe virtualsmartcard\win32\BixVReader\WinXP
build_script: build_script:
- msbuild virtualsmartcard\win32\BixVReader\WinXP\BixVReader.sln /p:Configuration="Win7 Debug" /p:Platform=%MSBUILD_PLATFORM% - msbuild virtualsmartcard\win32\BixVReader.sln /p:Configuration=Release;Platform=%MSBUILD_PLATFORM%
- msbuild virtualsmartcard\win32\vpcd-config\vpcd-config.sln /p:Configuration="Debug" /p:Platform=Win32