diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-12-31 20:24:05 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-01-01 10:24:08 -0600 |
commit | ec89ea96ae7f42b227c0fb5f61cd21a19ef2e8de (patch) | |
tree | 7e17745923b5b961a114693caf0005e40f651cfc /src | |
parent | 95b1be66d4c16b1b05b761c1771df229ac0e539c (diff) | |
download | wix-ec89ea96ae7f42b227c0fb5f61cd21a19ef2e8de.tar.gz wix-ec89ea96ae7f42b227c0fb5f61cd21a19ef2e8de.tar.bz2 wix-ec89ea96ae7f42b227c0fb5f61cd21a19ef2e8de.zip |
Upload test results and fail the build if any are missing.
Always zip up the logs from %TEMP%.
Diffstat (limited to 'src')
-rw-r--r-- | src/api/api.cmd | 11 | ||||
-rw-r--r-- | src/build_init.cmd | 1 | ||||
-rw-r--r-- | src/burn/burn.cmd | 5 | ||||
-rw-r--r-- | src/create_zips.cmd | 2 | ||||
-rw-r--r-- | src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets | 4 | ||||
-rw-r--r-- | src/libs/libs.cmd | 5 | ||||
-rw-r--r-- | src/test/burn/test_burn.cmd | 11 | ||||
-rw-r--r-- | src/test/test.cmd | 3 | ||||
-rw-r--r-- | src/testresultfilelist.txt | 16 | ||||
-rw-r--r-- | src/wix/wix.cmd | 27 |
10 files changed, 54 insertions, 31 deletions
diff --git a/src/api/api.cmd b/src/api/api.cmd index 6a424c34..ffc403d5 100644 --- a/src/api/api.cmd +++ b/src/api/api.cmd | |||
@@ -2,6 +2,7 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | @set _L=%~dp0..\..\build\logs | ||
5 | :parse_args | 6 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release | 7 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 8 | @if not "%1"=="" shift & goto parse_args |
@@ -12,13 +13,13 @@ | |||
12 | :: build | 13 | :: build |
13 | :: pack | 14 | :: pack |
14 | 15 | ||
15 | msbuild api_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\api_build.binlog || exit /b | 16 | msbuild api_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:%_L%\api_build.binlog || exit /b |
16 | 17 | ||
17 | :: test | 18 | :: test |
18 | dotnet test burn\test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj -c %_C% --nologo --no-build || exit /b | 19 | dotnet test burn\test\WixToolsetTest.Mba.Core -c %_C% --nologo --no-build -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.Mba.Core.trx" || exit /b |
19 | msbuild burn\test\BalUtilUnitTest -t:Test -p:Configuration=%_C% -nologo || exit /b | 20 | msbuild burn\test\BalUtilUnitTest -t:Test -p:Configuration=%_C% -nologo -p:CppCliTestResultsFile="%_L%\TestResults\BalUtilUnitTest.xunit2.xml" || exit /b |
20 | msbuild burn\test\BextUtilUnitTest -t:Test -p:Configuration=%_C% -nologo || exit /b | 21 | msbuild burn\test\BextUtilUnitTest -t:Test -p:Configuration=%_C% -nologo -p:CppCliTestResultsFile="%_L%\TestResults\BextUtilUnitTest.xunit2.xml" || exit /b |
21 | dotnet test wix\api_wix.sln -c %_C% --nologo --no-build || exit /b | 22 | dotnet test wix\api_wix.sln -c %_C% --nologo --no-build -l "trx;LogFileName=%_L%\TestResults\api_wix.trx" || exit /b |
22 | 23 | ||
23 | @popd | 24 | @popd |
24 | @endlocal | 25 | @endlocal |
diff --git a/src/build_init.cmd b/src/build_init.cmd index 895af357..980dc327 100644 --- a/src/build_init.cmd +++ b/src/build_init.cmd | |||
@@ -2,6 +2,7 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | md ..\build\artifacts | 4 | md ..\build\artifacts |
5 | md ..\build\logs\TestResults | ||
5 | 6 | ||
6 | msbuild -Restore internal\SetBuildNumber\SetBuildNumber.proj -nologo | 7 | msbuild -Restore internal\SetBuildNumber\SetBuildNumber.proj -nologo |
7 | 8 | ||
diff --git a/src/burn/burn.cmd b/src/burn/burn.cmd index b7c171c5..bd872bad 100644 --- a/src/burn/burn.cmd +++ b/src/burn/burn.cmd | |||
@@ -2,6 +2,7 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | @set _L=%~dp0..\..\build\logs | ||
5 | :parse_args | 6 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release | 7 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 8 | @if not "%1"=="" shift & goto parse_args |
@@ -12,9 +13,9 @@ | |||
12 | 13 | ||
13 | nuget restore || exit /b | 14 | nuget restore || exit /b |
14 | 15 | ||
15 | msbuild burn_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\burn_build.binlog || exit /b | 16 | msbuild burn_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:%_L%\burn_build.binlog || exit /b |
16 | 17 | ||
17 | msbuild test\BurnUnitTest -t:Test -p:Configuration=%_C% -nologo || exit /b | 18 | msbuild test\BurnUnitTest -t:Test -p:Configuration=%_C% -nologo -p:CppCliTestResultsFile="%_L%\TestResults\BurnUnitTest.xunit2.xml" || exit /b |
18 | 19 | ||
19 | @popd | 20 | @popd |
20 | @endlocal | 21 | @endlocal |
diff --git a/src/create_zips.cmd b/src/create_zips.cmd new file mode 100644 index 00000000..0df7e000 --- /dev/null +++ b/src/create_zips.cmd | |||
@@ -0,0 +1,2 @@ | |||
1 | 7z a "build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log" || exit /b | ||
2 | 7z a "build\testresults.zip" @src\testresultfilelist.txt || exit /b \ No newline at end of file | ||
diff --git a/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets b/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets index 80b159ec..58475559 100644 --- a/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets +++ b/src/internal/WixBuildTools.TestSupport.Native/build/WixBuildTools.TestSupport.Native.targets | |||
@@ -44,6 +44,8 @@ | |||
44 | 44 | ||
45 | <UsingTask AssemblyFile="$(RootPackagesFolder)xunit.runner.msbuild.2.4.1\build\net452\xunit.runner.msbuild.net452.dll" TaskName="Xunit.Runner.MSBuild.xunit" Architecture="x86" /> | 45 | <UsingTask AssemblyFile="$(RootPackagesFolder)xunit.runner.msbuild.2.4.1\build\net452\xunit.runner.msbuild.net452.dll" TaskName="Xunit.Runner.MSBuild.xunit" Architecture="x86" /> |
46 | <Target Name="Test"> | 46 | <Target Name="Test"> |
47 | <xunit Assemblies="$(TargetPath)" /> | 47 | <!-- https://xunit.net/docs/running-tests-in-msbuild --> |
48 | <!-- https://github.com/xunit/xunit/issues/2188 --> | ||
49 | <xunit Assemblies="$(TargetPath)" Xml="$(CppCliTestResultsFile)" /> | ||
48 | </Target> | 50 | </Target> |
49 | </Project> | 51 | </Project> |
diff --git a/src/libs/libs.cmd b/src/libs/libs.cmd index 2cc56239..50a2db55 100644 --- a/src/libs/libs.cmd +++ b/src/libs/libs.cmd | |||
@@ -2,15 +2,16 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | @set _L=%~dp0..\..\build\logs | ||
5 | :parse_args | 6 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release | 7 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 8 | @if not "%1"=="" shift & goto parse_args |
8 | 9 | ||
9 | @echo Building libs %_C% | 10 | @echo Building libs %_C% |
10 | 11 | ||
11 | msbuild -Restore libs_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\libs_build.binlog || exit /b | 12 | msbuild -Restore libs_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:%_L%\libs_build.binlog || exit /b |
12 | 13 | ||
13 | msbuild dutil\test\DutilUnitTest -t:Test -p:Configuration=%_C% -nologo || exit /b | 14 | msbuild dutil\test\DutilUnitTest -t:Test -p:Configuration=%_C% -nologo -p:CppCliTestResultsFile="%_L%\TestResults\DutilUnitTest.xunit2.xml" || exit /b |
14 | 15 | ||
15 | @popd | 16 | @popd |
16 | @endlocal | 17 | @endlocal |
diff --git a/src/test/burn/test_burn.cmd b/src/test/burn/test_burn.cmd index 7caf1cc8..af930247 100644 --- a/src/test/burn/test_burn.cmd +++ b/src/test/burn/test_burn.cmd | |||
@@ -3,6 +3,7 @@ | |||
3 | 3 | ||
4 | @set _RESULT=0 | 4 | @set _RESULT=0 |
5 | @set _C=Debug | 5 | @set _C=Debug |
6 | @set _L=%~dp0..\..\..\build\logs | ||
6 | :parse_args | 7 | :parse_args |
7 | @if /i "%1"=="release" set _C=Release | 8 | @if /i "%1"=="release" set _C=Release |
8 | @if /i "%1"=="test" set RuntimeTestsEnabled=true | 9 | @if /i "%1"=="test" set RuntimeTestsEnabled=true |
@@ -10,20 +11,16 @@ | |||
10 | 11 | ||
11 | @echo Burn integration tests %_C% | 12 | @echo Burn integration tests %_C% |
12 | 13 | ||
13 | msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror -bl:..\..\..\build\logs\test_burn_build.binlog || exit /b | 14 | msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror -bl:%_L%\test_burn_build.binlog || exit /b |
14 | msbuild -t:Build -Restore -p:Configuration=%_C% TestData\TestData.proj -bl:..\..\..\build\logs\test_burn_data_build.binlog || exit /b | 15 | msbuild -t:Build -Restore -p:Configuration=%_C% TestData\TestData.proj -bl:%_L%\test_burn_data_build.binlog || exit /b |
15 | 16 | ||
16 | @if not "%RuntimeTestsEnabled%"=="true" goto :LExit | 17 | @if not "%RuntimeTestsEnabled%"=="true" goto :LExit |
17 | 18 | ||
18 | reg add HKLM\Software\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f | 19 | reg add HKLM\Software\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f |
19 | reg add HKLM\Software\WOW6432Node\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f | 20 | reg add HKLM\Software\WOW6432Node\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f |
20 | 21 | ||
21 | dotnet test -c %_C% --no-build WixToolsetTest.BurnE2E | 22 | dotnet test -c %_C% --no-build WixToolsetTest.BurnE2E -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.BurnE2E.trx" || exit /b |
22 | set _RESULT=%ERRORLEVEL% | ||
23 | |||
24 | 7z a "..\..\..\build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log" | ||
25 | 23 | ||
26 | :LExit | 24 | :LExit |
27 | @popd | 25 | @popd |
28 | exit /b %_RESULT% | ||
29 | @endlocal | 26 | @endlocal |
diff --git a/src/test/test.cmd b/src/test/test.cmd index 9238cbfc..3158b2c2 100644 --- a/src/test/test.cmd +++ b/src/test/test.cmd | |||
@@ -2,6 +2,7 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | @set _L=%~dp0..\..\build\logs | ||
5 | :parse_args | 6 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release | 7 | @if /i "%1"=="release" set _C=Release |
7 | @if /i "%1"=="test" set RuntimeTestsEnabled=true | 8 | @if /i "%1"=="test" set RuntimeTestsEnabled=true |
@@ -12,7 +13,7 @@ | |||
12 | 13 | ||
13 | @call burn\test_burn.cmd %_C% %_T% || exit /b | 14 | @call burn\test_burn.cmd %_C% %_T% || exit /b |
14 | 15 | ||
15 | dotnet test wix -c %_C% --nologo || exit /b | 16 | dotnet test wix -c %_C% --nologo -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.WixE2ETests.trx" || exit /b |
16 | 17 | ||
17 | @popd | 18 | @popd |
18 | @endlocal | 19 | @endlocal |
diff --git a/src/testresultfilelist.txt b/src/testresultfilelist.txt new file mode 100644 index 00000000..aa8d93e9 --- /dev/null +++ b/src/testresultfilelist.txt | |||
@@ -0,0 +1,16 @@ | |||
1 | build/logs/TestResults/api_wix.trx | ||
2 | build/logs/TestResults/BalUtilUnitTest.xunit2.xml | ||
3 | build/logs/TestResults/BextUtilUnitTest.xunit2.xml | ||
4 | build/logs/TestResults/BurnUnitTest.xunit2.xml | ||
5 | build/logs/TestResults/DutilUnitTest.xunit2.xml | ||
6 | build/logs/TestResults/WixToolsetTest.BuildTasks.trx | ||
7 | build/logs/TestResults/WixToolsetTest.BurnE2E.trx | ||
8 | build/logs/TestResults/WixToolsetTest.Converters.trx | ||
9 | build/logs/TestResults/WixToolsetTest.Converters.Symbolizer.trx | ||
10 | build/logs/TestResults/WixToolsetTest.Core.Burn.trx | ||
11 | build/logs/TestResults/WixToolsetTest.Core.Native.trx | ||
12 | build/logs/TestResults/WixToolsetTest.CoreIntegration.trx | ||
13 | build/logs/TestResults/WixToolsetTest.Heat.trx | ||
14 | build/logs/TestResults/WixToolsetTest.Mba.Core.trx | ||
15 | build/logs/TestResults/WixToolsetTest.Sdk.trx | ||
16 | build/logs/TestResults/WixToolsetTest.WixE2ETests.trx \ No newline at end of file | ||
diff --git a/src/wix/wix.cmd b/src/wix/wix.cmd index 7c4c1c18..98c0d580 100644 --- a/src/wix/wix.cmd +++ b/src/wix/wix.cmd | |||
@@ -2,6 +2,7 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | 3 | ||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | @set _L=%~dp0..\..\build\logs | ||
5 | :parse_args | 6 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release | 7 | @if /i "%1"=="release" set _C=Release |
7 | @if not "%1"=="" shift & goto parse_args | 8 | @if not "%1"=="" shift & goto parse_args |
@@ -13,26 +14,26 @@ | |||
13 | @echo Building wix %_C% | 14 | @echo Building wix %_C% |
14 | 15 | ||
15 | :: Restore | 16 | :: Restore |
16 | msbuild -t:Restore wix.sln -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\wix_restore.binlog || exit /b | 17 | msbuild -t:Restore wix.sln -p:Configuration=%_C% -nologo -m -warnaserror -bl:%_L%\wix_restore.binlog || exit /b |
17 | 18 | ||
18 | 19 | ||
19 | :: Build | 20 | :: Build |
20 | msbuild wixnative\wixnative_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\wixnative_build.binlog || exit /b | 21 | msbuild wixnative\wixnative_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:%_L%\wixnative_build.binlog || exit /b |
21 | 22 | ||
22 | msbuild wix.sln -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\wix_build.binlog || exit /b | 23 | msbuild wix.sln -p:Configuration=%_C% -nologo -m -warnaserror -bl:%_L%\wix_build.binlog || exit /b |
23 | 24 | ||
24 | 25 | ||
25 | :: Pre-Publish Test | 26 | :: Pre-Publish Test |
26 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Converters || exit /b | 27 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Converters -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.Converters.trx" || exit /b |
27 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Converters.Symbolizer || exit /b | 28 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Converters.Symbolizer -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.Converters.Symbolizer.trx" || exit /b |
28 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Core.Burn || exit /b | 29 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Core.Burn -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.Core.Burn.trx" || exit /b |
29 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Core.Native || exit /b | 30 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Core.Native -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.Core.Native.trx" || exit /b |
30 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.CoreIntegration || exit /b | 31 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.CoreIntegration -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.CoreIntegration.trx" || exit /b |
31 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Heat || exit /b | 32 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Heat -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.Heat.trx" || exit /b |
32 | 33 | ||
33 | 34 | ||
34 | :: Publish | 35 | :: Publish |
35 | msbuild publish_t.proj -p:Configuration=%_C% -nologo -warnaserror -bl:..\..\build\logs\wix_publish.binlog || exit /b | 36 | msbuild publish_t.proj -p:Configuration=%_C% -nologo -warnaserror -bl:%_L%\wix_publish.binlog || exit /b |
36 | 37 | ||
37 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\net472\x86\buildtasks %_P%\WixToolset.Sdk\tools\net472\x86 %_RCO% /XF Microsoft.Build.*.dll | 38 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\net472\x86\buildtasks %_P%\WixToolset.Sdk\tools\net472\x86 %_RCO% /XF Microsoft.Build.*.dll |
38 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\net472\x86\heat %_P%\WixToolset.Sdk\tools\net472\x86 %_RCO% | 39 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\net472\x86\heat %_P%\WixToolset.Sdk\tools\net472\x86 %_RCO% |
@@ -46,15 +47,15 @@ robocopy %_P_OBJ%\WixToolset.Sdk\separate\netcoreapp3.1\buildtasks %_P%\WixTools | |||
46 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\netcoreapp3.1\heat %_P%\WixToolset.Sdk\tools\netcoreapp3.1 %_RCO% | 47 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\netcoreapp3.1\heat %_P%\WixToolset.Sdk\tools\netcoreapp3.1 %_RCO% |
47 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\netcoreapp3.1\wix %_P%\WixToolset.Sdk\tools\netcoreapp3.1 %_RCO% | 48 | robocopy %_P_OBJ%\WixToolset.Sdk\separate\netcoreapp3.1\wix %_P%\WixToolset.Sdk\tools\netcoreapp3.1 %_RCO% |
48 | 49 | ||
49 | msbuild -t:Publish -p:Configuration=%_C% -nologo -warnaserror -p:PublishDir=%_P%WixToolset.Sdk\ WixToolset.Sdk\WixToolset.Sdk.csproj || exit /b | 50 | msbuild -t:Publish -p:Configuration=%_C% -nologo -warnaserror -p:PublishDir=%_P%WixToolset.Sdk\ WixToolset.Sdk\WixToolset.Sdk.csproj -bl:%_L%\wix_sdk_publish.binlog || exit /b |
50 | 51 | ||
51 | :: TODO - used by MsbuildFixture.ReportsInnerExceptionForUnexpectedExceptions test | 52 | :: TODO - used by MsbuildFixture.ReportsInnerExceptionForUnexpectedExceptions test |
52 | :: msbuild -t:Publish -Restore -p:Configuration=%_C% -p:TargetFramework=net472 -p:RuntimeIdentifier=linux-x86 -p:PublishDir=%_P%WixToolset.Sdk\broken\net472\ wix\wix.csproj || exit /b | 53 | :: msbuild -t:Publish -Restore -p:Configuration=%_C% -p:TargetFramework=net472 -p:RuntimeIdentifier=linux-x86 -p:PublishDir=%_P%WixToolset.Sdk\broken\net472\ wix\wix.csproj || exit /b |
53 | 54 | ||
54 | 55 | ||
55 | :: Test | 56 | :: Test |
56 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.BuildTasks || exit /b | 57 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.BuildTasks -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.BuildTasks.trx" || exit /b |
57 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Sdk || exit /b | 58 | dotnet test -c %_C% --no-build --nologo test\WixToolsetTest.Sdk -l "trx;LogFileName=%_L%\TestResults\WixToolsetTest.Sdk.trx" || exit /b |
58 | 59 | ||
59 | :: Pack | 60 | :: Pack |
60 | msbuild pack_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\wix_pack.binlog || exit /b | 61 | msbuild pack_t.proj -p:Configuration=%_C% -nologo -m -warnaserror -bl:..\..\build\logs\wix_pack.binlog || exit /b |