diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-22 06:31:03 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-29 16:21:09 -0700 |
commit | f39e7a3e164d0736e45049e5726d0da2013da3c9 (patch) | |
tree | aea365ce11f41ad1c78de6997d916890dfb61b45 /appveyor.cmd | |
parent | bcd3ee7ab858d62beb36af9f5986544b68a3dd35 (diff) | |
download | wix-f39e7a3e164d0736e45049e5726d0da2013da3c9.tar.gz wix-f39e7a3e164d0736e45049e5726d0da2013da3c9.tar.bz2 wix-f39e7a3e164d0736e45049e5726d0da2013da3c9.zip |
Update to latest build infrastructure
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index 9b6bc112..85476b8e 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,22 +1,24 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | @set _C=Release | ||
4 | @if /i "%1"=="debug" set _C=Debug | ||
3 | 5 | ||
4 | nuget restore || exit /b | 6 | nuget restore || exit /b |
5 | 7 | ||
6 | msbuild -t:Test -p:Configuration=Release src\test\DUtilUnitTest || exit /b | 8 | msbuild -t:Test -p:Configuration=%_C% src\test\DUtilUnitTest || exit /b |
7 | 9 | ||
8 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 || exit /b | 10 | msbuild -p:Configuration=%_C%;Platform=x86;PlatformToolset=v140 || exit /b |
9 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 || exit /b | 11 | msbuild -p:Configuration=%_C%;Platform=x64;PlatformToolset=v140 || exit /b |
10 | 12 | ||
11 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 || exit /b | 13 | msbuild -p:Configuration=%_C%;Platform=x86;PlatformToolset=v141 || exit /b |
12 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 || exit /b | 14 | msbuild -p:Configuration=%_C%;Platform=x64;PlatformToolset=v141 || exit /b |
13 | msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 || exit /b | 15 | msbuild -p:Configuration=%_C%;Platform=ARM64;PlatformToolset=v141 || exit /b |
14 | 16 | ||
15 | msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 || exit /b | 17 | msbuild -p:Configuration=%_C%;Platform=x86;PlatformToolset=v142 || exit /b |
16 | msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 || exit /b | 18 | msbuild -p:Configuration=%_C%;Platform=x64;PlatformToolset=v142 || exit /b |
17 | msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 || exit /b | 19 | msbuild -p:Configuration=%_C%;Platform=ARM64;PlatformToolset=v142 || exit /b |
18 | 20 | ||
19 | msbuild -p:Configuration=Release -t:PackNativeNuget src\dutil\dutil.vcxproj || exit /b | 21 | msbuild -p:Configuration=%_C% -t:PackNative src\dutil\dutil.vcxproj || exit /b |
20 | 22 | ||
21 | @popd | 23 | @popd |
22 | @endlocal \ No newline at end of file | 24 | @endlocal \ No newline at end of file |