7da18071366b7fe70788a2248d4b06610709dfaa
[platform/upstream/coreclr.git] / build-test.cmd
1 @if not defined _echo @echo off
2 setlocal EnableDelayedExpansion
3
4 :: Set the default arguments for build
5 set __BuildArch=x64
6 set __VCBuildArch=x86_amd64
7 set __BuildType=Debug
8 set __BuildOS=Windows_NT
9
10 :: Define a prefix for most output progress messages that come from this script. That makes
11 :: it easier to see where these are coming from. Note that there is a trailing space here.
12 set "__MsgPrefix=BUILDTEST: "
13
14 :: Default to highest Visual Studio version available
15 ::
16 :: For VS2015 (and prior), only a single instance is allowed to be installed on a box
17 :: and VS140COMNTOOLS is set as a global environment variable by the installer. This
18 :: allows users to locate where the instance of VS2015 is installed.
19 ::
20 :: For VS2017, multiple instances can be installed on the same box SxS and VS150COMNTOOLS
21 :: is no longer set as a global environment variable and is instead only set if the user
22 :: has launched the VS2017 Developer Command Prompt.
23 ::
24 :: Following this logic, we will default to the VS2017 toolset if VS150COMNTOOLS tools is
25 :: set, as this indicates the user is running from the VS2017 Developer Command Prompt and
26 :: is already configured to use that toolset. Otherwise, we will fallback to using the VS2015
27 :: toolset if it is installed. Finally, we will fail the script if no supported VS instance
28 :: can be found.
29 if defined VisualStudioVersion ( 
30     if not defined __VSVersion echo %__MsgPrefix%Detected Visual Studio %VisualStudioVersion% developer command ^prompt environment
31     goto Run
32 )
33
34 set _VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
35 if exist %_VSWHERE% (
36   for /f "usebackq tokens=*" %%i in (`%_VSWHERE% -latest -prerelease -property installationPath`) do set _VSCOMNTOOLS=%%i\Common7\Tools
37 )
38 if not exist "%_VSCOMNTOOLS%" set _VSCOMNTOOLS=%VS140COMNTOOLS%
39 if not exist "%_VSCOMNTOOLS%" (
40   echo %__MsgPrefix%Error: Visual Studio 2015 or 2017 required.
41   echo        Please see https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/developer-guide.md for build instructions.
42   exit /b 1
43 )
44
45 call "%_VSCOMNTOOLS%\VsDevCmd.bat"
46
47 :Run
48
49 if defined VS150COMNTOOLS (
50   set "__VSToolsRoot=%VS150COMNTOOLS%"
51   set "__VCToolsRoot=%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build"
52   set __VSVersion=vs2017
53 ) else (
54   set "__VSToolsRoot=%VS140COMNTOOLS%"
55   set "__VCToolsRoot=%VS140COMNTOOLS%\..\..\VC"
56   set __VSVersion=vs2015
57 )
58
59 set "__ProjectDir=%~dp0"
60 :: remove trailing slash
61 if %__ProjectDir:~-1%==\ set "__ProjectDir=%__ProjectDir:~0,-1%"
62 set "__TestDir=%__ProjectDir%\tests"
63 set "__ProjectFilesDir=%__TestDir%"
64 set "__SourceDir=%__ProjectDir%\src"
65 set "__PackagesDir=%__ProjectDir%\packages"
66 set "__RootBinDir=%__ProjectDir%\bin"
67 set "__LogsDir=%__RootBinDir%\Logs"
68
69 :: Default __Exclude to issues.targets
70 set __Exclude=%__TestDir%\issues.targets
71
72 REM __unprocessedBuildArgs are args that we pass to msbuild (e.g. /p:__BuildArch=x64)
73 set "__args= %*"
74 set processedArgs=
75 set __unprocessedBuildArgs=
76 set __RunArgs=
77 set __BuildAgainstPackagesArg=
78 set __RuntimeId=
79 set __ZipTests=
80 set __TargetsWindows=1
81 set __DoCrossgen=
82
83 :Arg_Loop
84 if "%1" == "" goto ArgsDone
85
86 if /i "%1" == "-?"    goto Usage
87 if /i "%1" == "-h"    goto Usage
88 if /i "%1" == "-help" goto Usage
89
90 if /i "%1" == "x64"                   (set __BuildArch=x64&set __VCBuildArch=x86_amd64&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
91 if /i "%1" == "x86"                   (set __BuildArch=x86&set __VCBuildArch=x86&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
92 if /i "%1" == "arm"                   (set __BuildArch=arm&set __VCBuildArch=x86_arm&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
93 if /i "%1" == "arm64"                 (set __BuildArch=arm64&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
94
95 if /i "%1" == "debug"                 (set __BuildType=Debug&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
96 if /i "%1" == "release"               (set __BuildType=Release&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
97 if /i "%1" == "checked"               (set __BuildType=Checked&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
98
99 if /i "%1" == "skipmanaged"           (set __SkipManaged=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
100 if /i "%1" == "toolset_dir"           (set __ToolsetDir=%2&set __PassThroughArgs=%__PassThroughArgs% %2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
101 if /i "%1" == "buildagainstpackages"  (set __ZipTests=1&set __BuildAgainstPackagesArg=-BuildTestsAgainstPackages&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
102 if /i "%1" == "ziptests"              (set __ZipTests=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
103 if /i "%1" == "crossgen"              (set __DoCrossgen=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
104 if /i "%1" == "runtimeid"             (set __RuntimeId=%2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
105 if /i "%1" == "targetsNonWindows"     (set __TargetsWindows=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
106 if /i "%1" == "Exclude"               (set __Exclude=%2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
107
108 if [!processedArgs!]==[] (
109   set __UnprocessedBuildArgs=%__args%
110 ) else (
111   set __UnprocessedBuildArgs=%__args%
112   for %%t in (!processedArgs!) do (
113     set __UnprocessedBuildArgs=!__UnprocessedBuildArgs:*%%t=!
114   )
115 )
116
117 :ArgsDone
118
119 if defined __BuildAgainstPackagesArg (
120     if not defined __RuntimeID (
121         echo %__MsgPrefix%Error: When building against packages, you must supply a target Runtime ID.
122         exit /b 1
123     )
124 )
125
126 @if defined _echo @echo on
127
128 set __RunArgs=-BuildOS=%__BuildOS% -BuildType=%__BuildType% -BuildArch=%__BuildArch%
129
130 rem arm64 builds currently use private toolset which has not been released yet
131 REM TODO, remove once the toolset is open.
132 if /i "%__BuildArch%" == "arm64" call :PrivateToolSet
133
134 echo %__MsgPrefix%Commencing CoreCLR repo test build
135
136 set "__BinDir=%__RootBinDir%\Product\%__BuildOS%.%__BuildArch%.%__BuildType%"
137 set "__TestRootDir=%__RootBinDir%\tests"
138 set "__TestBinDir=%__TestRootDir%\%__BuildOS%.%__BuildArch%.%__BuildType%"
139 :: We have different managed and native intermediate dirs because the managed bits will include
140 :: the configuration information deeper in the intermediates path.
141 :: These variables are used by the msbuild project files.
142
143 if not defined __TestIntermediateDir (
144     set "__TestIntermediateDir=tests\obj\%__BuildOS%.%__BuildArch%.%__BuildType%"
145 )
146 set "__NativeTestIntermediatesDir=%__RootBinDir%\%__TestIntermediateDir%\Native"
147 set "__ManagedTestIntermediatesDir=%__RootBinDir%\%__TestIntermediateDir%\Managed"
148
149 :: Generate path to be set for CMAKE_INSTALL_PREFIX to contain forward slash
150 set "__CMakeBinDir=%__TestBinDir%"
151 set "__CMakeBinDir=%__CMakeBinDir:\=/%"
152
153 if not exist "%__TestBinDir%"                   md "%__TestBinDir%"
154 if not exist "%__NativeTestIntermediatesDir%"   md "%__NativeTestIntermediatesDir%"
155 if not exist "%__ManagedTestIntermediatesDir%"  md "%__ManagedTestIntermediatesDir%"
156 if not exist "%__LogsDir%"                      md "%__LogsDir%"
157
158 echo %__MsgPrefix%Checking prerequisites
159
160 :: Eval the output from probe-win1.ps1
161 for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy ByPass "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a
162
163 REM =========================================================================================
164 REM ===
165 REM === Restore Build Tools
166 REM ===
167 REM =========================================================================================
168 call "%__ProjectDir%\init-tools.cmd"
169 @if defined _echo @echo on
170
171 REM =========================================================================================
172 REM ===
173 REM === Resolve runtime dependences
174 REM ===
175 REM =========================================================================================
176
177 call "%__TestDir%\setup-stress-dependencies.cmd" /arch %__BuildArch% /outputdir %__BinDir%
178 @if defined _echo @echo on
179
180 REM =========================================================================================
181 REM ===
182 REM === Native test build section
183 REM ===
184 REM =========================================================================================
185
186 echo %__MsgPrefix%Commencing build of native test components for %__BuildArch%/%__BuildType%
187
188 if defined __ToolsetDir (
189  echo %__MsgPrefix%ToolsetDir is defined to be :%__ToolsetDir%
190  goto GenVSSolution :: Private ToolSet is Defined
191 )
192
193 :: Set the environment for the native build
194 echo %__MsgPrefix%Using environment: "%__VCToolsRoot%\vcvarsall.bat" %__VCBuildArch%
195 call                                 "%__VCToolsRoot%\vcvarsall.bat" %__VCBuildArch%
196 @if defined _echo @echo on
197
198 if not defined VSINSTALLDIR (
199     echo %__MsgPrefix%Error: VSINSTALLDIR variable not defined.
200     exit /b 1
201 )
202 if not exist "%VSINSTALLDIR%DIA SDK" goto NoDIA
203
204 :GenVSSolution
205
206 pushd "%__NativeTestIntermediatesDir%"
207 call "%__SourceDir%\pal\tools\gen-buildsys-win.bat" ""%__ProjectFilesDir%"" %__VSVersion% %__BuildArch%
208 @if defined _echo @echo on
209 popd
210
211 if not exist "%__NativeTestIntermediatesDir%\install.vcxproj" (
212     echo %__MsgPrefix%Failed to generate test native component build project!
213     exit /b 1
214 )
215
216 set __msbuildNativeArgs=-configuration=%__BuildType%
217
218 if defined __ToolsetDir (
219     set __msbuildNativeArgs=%__msbuildNativeArgs% -UseEnv
220 ) else (
221     set __msbuildNativeArgs=%__msbuildNativeArgs% -platform=%__BuildArch%
222 )
223
224 set __BuildLogRootName=Tests_Native
225 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
226 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
227 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
228 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
229 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
230 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
231
232 call "%__ProjectDir%\run.cmd" build -Project="%__NativeTestIntermediatesDir%\install.vcxproj" -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__msbuildNativeArgs% %__RunArgs% %__unprocessedBuildArgs%
233 if errorlevel 1 (
234     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
235     echo     %__BuildLog%
236     echo     %__BuildWrn%
237     echo     %__BuildErr%
238     exit /b 1
239 )
240
241 :skipnative
242
243 set "__TestWorkingDir=%__RootBinDir%\tests\%__BuildOS%.%__BuildArch%.%__BuildType%"
244
245 if not defined __BuildAgainstPackagesArg goto SkipRestoreProduct
246 REM =========================================================================================
247 REM ===
248 REM === Restore product binaries from packages
249 REM ===
250 REM =========================================================================================
251
252 if not defined XunitTestBinBase       set  XunitTestBinBase=%__TestWorkingDir%
253 set "CORE_ROOT=%XunitTestBinBase%\Tests\Core_Root"
254
255 set __BuildLogRootName=Restore_Product
256 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
257 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
258 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
259 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
260 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
261 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
262
263 call "%__ProjectDir%\run.cmd" build -Project=%__ProjectDir%\tests\build.proj -BatchRestorePackages -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %__unprocessedBuildArgs%
264
265 set __BuildLogRootName=Tests_GenerateRuntimeLayout
266 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
267 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
268 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
269 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
270 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
271 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
272
273 call "%__ProjectDir%\run.cmd" build -Project=%__ProjectDir%\tests\runtest.proj -BinPlaceRef -BinPlaceProduct -CopyCrossgenToProduct -RuntimeId="%__RuntimeId%" -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %__unprocessedBuildArgs%
274 if errorlevel 1 (
275     echo BinPlace of mscorlib.dll failed
276     exit /b 1
277 )
278
279 echo %__MsgPrefix% Restored CoreCLR product from packages
280
281 :SkipRestoreProduct
282
283 if defined __SkipManaged exit /b 0
284
285 REM =========================================================================================
286 REM ===
287 REM === Managed test build section
288 REM ===
289 REM =========================================================================================
290
291 echo %__MsgPrefix%Starting the Managed Tests Build
292
293 if not defined VSINSTALLDIR (
294     echo %__MsgPrefix%Error: build-test.cmd should be run from a Visual Studio Command Prompt.  Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions.
295     exit /b 1
296 )
297
298 set __BuildLogRootName=Tests_Managed
299 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
300 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
301 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
302 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
303 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
304 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
305
306 call "%__ProjectDir%\run.cmd" build -Project=%__ProjectDir%\tests\build.proj -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %__unprocessedBuildArgs%
307 if errorlevel 1 (
308     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
309     echo     %__BuildLog%
310     echo     %__BuildWrn%
311     echo     %__BuildErr%
312     exit /b 1
313 )
314
315 REM Prepare the Test Drop
316 REM Cleans any NI from the last run
317 powershell "Get-ChildItem -path %__TestWorkingDir% -Include '*.ni.*' -Recurse -Force | Remove-Item -force"
318 REM Cleans up any lock folder used for synchronization from last run
319 powershell "Get-ChildItem -path %__TestWorkingDir% -Include 'lock' -Recurse -Force |  where {$_.Attributes -eq 'Directory'}| Remove-Item -force -Recurse"
320
321 set CORE_ROOT=%__TestBinDir%\Tests\Core_Root
322 set CORE_ROOT_STAGE=%__TestBinDir%\Tests\Core_Root_Stage
323 if exist "%CORE_ROOT%" rd /s /q "%CORE_ROOT%"
324 if exist "%CORE_ROOT_STAGE%" rd /s /q "%CORE_ROOT_STAGE%"
325 md "%CORE_ROOT%"
326 md "%CORE_ROOT_STAGE%"
327 xcopy "%__BinDir%" "%CORE_ROOT_STAGE%"
328
329
330 if defined __BuildAgainstPackagesArg ( 
331   if "%__TargetsWindows%"=="0" (
332
333     if not exist %__PackagesDir%\TestNativeBins (
334         echo %__MsgPrefix%Error: Ensure you have run sync.cmd -ab before building a non-Windows test overlay against packages
335         exit /b 1
336     )
337
338     for /R %__PackagesDir%\TestNativeBins\%__RuntimeId%\%__BuildType% %%f in (*.so) do copy %%f %CORE_ROOT_STAGE%
339     for /R %__PackagesDir%\TestNativeBins\%__RuntimeId%\%__BuildType% %%f in (*.dylib) do copy %%f %CORE_ROOT_STAGE%
340   )
341 )
342
343 echo %__MsgPrefix%Creating test wrappers...
344
345 set RuntimeIdArg=
346 set TargetsWindowsArg=
347
348 if defined __RuntimeId (
349     set RuntimeIdArg=-RuntimeID="%__RuntimeId%"
350 )
351
352 if "%__TargetsWindows%"=="1" (
353     set TargetsWindowsArg=-TargetsWindows=true
354 ) else if "%__TargetsWindows%"=="0" (
355     set TargetsWindowsArg=-TargetsWindows=false
356 )
357
358 set __BuildLogRootName=Tests_XunitWrapper
359 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
360 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
361 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
362 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
363 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
364 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
365
366 call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\tests\runtest.proj -BuildWrappers -MsBuildEventLogging=" " -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %TargetsWindowsArg% %__unprocessedBuildArgs%
367 if errorlevel 1 (
368     echo Xunit Wrapper build failed
369     exit /b 1
370 )
371
372 echo %__MsgPrefix%Creating test overlay...
373
374 set __BuildLogRootName=Tests_Overlay_Managed
375 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
376 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
377 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
378 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
379 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
380 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
381
382 call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\tests\runtest.proj -testOverlay -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %RuntimeIdArg% %__unprocessedBuildArgs%
383 if errorlevel 1 (
384     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
385     echo     %__BuildLog%
386     echo     %__BuildWrn%
387     echo     %__BuildErr%
388     exit /b 1
389 )
390
391 xcopy /s /y "%CORE_ROOT_STAGE%" "%CORE_ROOT%"
392
393 set __CrossgenArg = ""
394 if defined __DoCrossgen (
395   set __CrossgenArg="-Crossgen"
396   if "%__TargetsWindows%" == "1" (
397     call :PrecompileFX
398   ) else (
399     echo "%__MsgPrefix% Crossgen only supported on Windows, for now"
400   )
401 )
402
403 rd /s /q "%CORE_ROOT_STAGE%"
404
405 if not defined __ZipTests goto SkipPrepForPublish
406
407 set __BuildLogRootName=Helix_Prep
408 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
409 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
410 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
411 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
412 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
413 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
414
415 REM =========================================================================================
416 REM ===
417 REM === Prep test binaries for Helix publishing
418 REM ===
419 REM =========================================================================================
420
421 call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\tests\helixprep.proj  -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %RuntimeIdArg% %TargetsWindowsArg% %__CrossgenArg% %__unprocessedBuildArgs%
422 if errorlevel 1 (
423     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
424     echo     %__BuildLog%
425     echo     %__BuildWrn%
426     echo     %__BuildErr%
427     exit /b 1
428 )
429
430 echo %__MsgPrefix% Prepped test binaries for publishing
431
432 :SkipPrepForPublish
433
434 REM =========================================================================================
435 REM ===
436 REM === All builds complete!
437 REM ===
438 REM =========================================================================================
439
440 echo %__MsgPrefix%Test build successful.
441 echo %__MsgPrefix%Test binaries are available at !__TestBinDir!
442 exit /b 0
443
444 :Usage
445 echo.
446 echo Usage:
447 echo     %0 [option1] [option2] ...
448 echo All arguments are optional. Options are case-insensitive. The options are:
449 echo.
450 echo. -? -h -help: view this message.
451 echo Build architecture: -buildArch: only x64 is currently allowed ^(default: x64^).
452 echo Build type: -buildType: one of Debug, Checked, Release ^(default: Debug^).
453 echo buildagainstpackages: builds tests against restored packages, instead of against a built product.
454 echo runtimeid ^<ID^>: Builds a test overlay for the specified OS (Only supported when building against packages). Supported IDs are:
455 echo     alpine.3.4.3-x64: Builds overlay for Alpine 3.4.3
456 echo     debian.8-x64: Builds overlay for Debian 8
457 echo     fedora.24-x64: Builds overlay for Fedora 24
458 echo     linux-x64: Builds overlay for portable linux
459 echo     opensuse.42.1-x64: Builds overlay for OpenSUSE 42.1
460 echo     osx.10.12-x64: Builds overlay for OSX 10.12
461 echo     osx-x64: Builds overlay for portable OSX
462 echo     rhel.7-x64: Builds overlay for RHEL 7 or CentOS
463 echo     ubuntu.14.04-x64: Builds overlay for Ubuntu 14.04
464 echo     ubuntu.16.04-x64: Builds overlay for Ubuntu 16.04
465 echo     ubuntu.16.10-x64: Builds overlay for Ubuntu 16.10
466 echo     win-x64: Builds overlay for portable Windows
467 echo     win7-x64: Builds overlay for Windows 7
468 echo ziptests: zips CoreCLR tests & Core_Root for a Helix run
469 echo crossgen: Precompiles the framework managed assemblies
470 echo Exclude- Optional parameter - specify location of default exclusion file (defaults to tests\issues.targets if not specified)
471 echo     Set to "" to disable default exclusion file.
472 echo -- ... : all arguments following this tag will be passed directly to msbuild.
473 echo -priority=^<N^> : specify a set of test that will be built and run, with priority N.
474 echo     0: Build only priority 0 cases as essential testcases (default)
475 echo     1: Build all tests with priority 0 and 1
476 echo     666: Build all tests with priority 0, 1 ... 666
477 echo -verbose: enables detailed file logging for the msbuild tasks into the msbuild log file.
478 exit /b 1
479
480 :NoDIA
481 echo Error: DIA SDK is missing at "%VSINSTALLDIR%DIA SDK". ^
482 This is due to a bug in the Visual Studio installer. It does not install DIA SDK at "%VSINSTALLDIR%" but rather ^
483 at the install location of previous Visual Studio version. The workaround is to copy the DIA SDK folder from the Visual Studio install location ^
484 of the previous version to "%VSINSTALLDIR%" and then build.
485 :: DIA SDK not included in Express editions
486 echo Visual Studio Express does not include the DIA SDK. ^
487 You need Visual Studio 2015 or 2017 (Community is free).
488 echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites
489 exit /b 1
490
491
492 :PrivateToolSet
493
494 echo %__MsgPrefix% Setting Up the usage of __ToolsetDir:%__ToolsetDir%
495
496 if /i "%__ToolsetDir%" == "" (
497     echo %__MsgPrefix%Error: A toolset directory is required for the Arm64 Windows build. Use the toolset_dir argument.
498     exit /b 1
499 )
500
501 if not exist "%__ToolsetDir%"\buildenv_arm64.cmd goto :Not_EWDK
502 call "%__ToolsetDir%"\buildenv_arm64.cmd
503 exit /b 0
504
505 :Not_EWDK
506 set PATH=%__ToolsetDir%\VC_sdk\bin;%PATH%
507 set LIB=%__ToolsetDir%\VC_sdk\lib\arm64;%__ToolsetDir%\sdpublic\sdk\lib\arm64
508 set INCLUDE=^
509 %__ToolsetDir%\VC_sdk\inc;^
510 %__ToolsetDir%\sdpublic\sdk\inc;^
511 %__ToolsetDir%\sdpublic\shared\inc;^
512 %__ToolsetDir%\sdpublic\shared\inc\minwin;^
513 %__ToolsetDir%\sdpublic\sdk\inc\ucrt;^
514 %__ToolsetDir%\sdpublic\sdk\inc\minwin;^
515 %__ToolsetDir%\sdpublic\sdk\inc\mincore;^
516 %__ToolsetDir%\sdpublic\sdk\inc\abi;^
517 %__ToolsetDir%\sdpublic\sdk\inc\clientcore;^
518 %__ToolsetDir%\diasdk\include
519 exit /b 0
520
521 :PrecompileFX
522 for %%F in (%CORE_ROOT%\*.dll) do call :PrecompileAssembly "%%F" %%~nF%%~xF
523 exit /b 0
524
525 REM Compile the managed assemblies in Core_ROOT before running the tests
526 :PrecompileAssembly
527
528 REM Skip mscorlib since it is already precompiled.
529 if /I "%2" == "mscorlib.dll" exit /b 0
530 if /I "%2" == "mscorlib.ni.dll" exit /b 0
531 REM don't precompile anything from CoreCLR
532 if /I exist %CORE_ROOT_STAGE%\%2 exit /b 0
533
534 "%CORE_ROOT_STAGE%\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" /in "%1" /out "%CORE_ROOT%/temp.ni.dll" >nul 2>nul
535 set /a __exitCode = %errorlevel%
536 if "%__exitCode%" == "-2146230517" (
537     echo %2 is not a managed assembly.
538     exit /b 0
539 )
540
541 if %__exitCode% neq 0 (
542     echo Unable to precompile %2
543     exit /b 0
544 )
545
546 :: Delete original .dll & replace it with the Crossgened .dll
547 del %1
548 ren "%CORE_ROOT%\temp.ni.dll" %2
549     
550 echo Successfully precompiled %2
551 exit /b 0