Permalink
Browse files

Have Crossgen Failures exit in a dedicated exit routine

  • Loading branch information...
1 parent 8fa99f1 commit 13ffcc4fcfc3220e4fdf47878ff4be8297361201 @wtgodbe wtgodbe committed Feb 21, 2017
Showing with 6 additions and 3 deletions.
  1. +6 −3 build.cmd
View
@@ -390,14 +390,14 @@ if %__BuildNativeCoreLib% EQU 1 (
echo %__MsgPrefix%Error: CrossGen System.Private.CoreLib build failed. Refer to %__CrossGenCoreLibLog%
:: Put it in the same log, helpful for Jenkins
type %__CrossGenCoreLibLog%
- exit /b 1
+ goto CrossgenFailure
)
"%__CrossgenExe%" /Platform_Assemblies_Paths "%__BinDir%" /CreatePdb "%__BinDir%\PDB" "%__BinDir%\System.Private.CoreLib.ni.dll" >> "%__CrossGenCoreLibLog%" 2>&1
if NOT !errorlevel! == 0 (
echo %__MsgPrefix%Error: CrossGen /CreatePdb System.Private.CoreLib build failed. Refer to %__CrossGenCoreLibLog%
:: Put it in the same log, helpful for Jenkins
type %__CrossGenCoreLibLog%
- exit /b 1
+ goto CrossgenFailure
)
echo %__MsgPrefix%Generating native image of MScorlib facade for %__BuildOS%.%__BuildArch%.%__BuildType%
@@ -422,7 +422,7 @@ if %__BuildNativeCoreLib% EQU 1 (
echo %__MsgPrefix%Error: CrossGen mscorlib facade build failed. Refer to !__CrossGenCoreLibLog!
:: Put it in the same log, helpful for Jenkins
type %__CrossGenCoreLibLog%
- exit /b 1
+ goto CrossgenFailure
)
)
@@ -561,6 +561,9 @@ REM === Helper routines
REM ===
REM =========================================================================================
+:CrossgenFailure
+exit /b 1
+
:Usage
echo.
echo Build the CoreCLR repo.

0 comments on commit 13ffcc4

Please sign in to comment.