-
Notifications
You must be signed in to change notification settings - Fork 60
/
build.cmd
76 lines (64 loc) · 2 KB
/
build.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@echo off
setlocal EnableDelayedExpansion
REM Build and optionally publish sub projects
REM
REM This script will by default build release versions of the tools.
REM If publish (-p) is requested it will create standalone versions of the
REM tools in <root>/src/<project>/bin/<platform>/<BuildType>/netcoreapp<version>.
set scriptDir=%~dp0
set appInstallDir=%scriptDir%bin
set buildType=Release
set publish=false
for /f "usebackq tokens=1,2" %%a in (`dotnet --info`) do (
if "%%a"=="RID:" set rid=%%b
)
:argLoop
if "%1"=="" goto :build
if /i "%1"=="-b" (
set buildType=%2
shift
goto :nextArg
)
if /i "%1"=="-p" (
set publish=true
goto :nextArg
)
if /i "%1" == "-h" (
goto :usage
)
echo ERROR: unknown argument %1
goto :usage
:nextArg
shift
goto :argLoop
:build
REM Do as many builds as possible; don't stop on first failure (if any).
set __ExitCode=0
REM Declare the list of projects
set projects=jit-diff jit-dasm jit-analyze jit-tp-analyze jit-format pmi jit-dasm-pmi jit-decisions-analyze performance-explorer instructions-retired-explorer
REM Build each project
for %%p in (%projects%) do (
if %publish%==true (
REM Publish src/pmi project without single-file, so it can be executed with a custom build of the runtime/JIT
if "%%p"=="pmi" (
dotnet publish -c %buildType% -o %appInstallDir% .\src\%%p
) else (
dotnet publish -c %buildType% -o %appInstallDir% .\src\%%p --self-contained -r:%rid% -p:PublishSingleFile=true
)
if errorlevel 1 echo ERROR: dotnet publish failed for .\src\%%p.&set __ExitCode=1
) else (
dotnet build -c %buildType% .\src\%%p
if errorlevel 1 echo ERROR: dotnet build failed for .\src\%%p.&set __ExitCode=1
)
)
REM Done
exit /b %__ExitCode%
:usage
echo.
echo build.cmd [-b ^<BUILD TYPE^>] [-h] [-p]
echo.
echo -b ^<BUILD TYPE^> : Build type, can be Debug or Release.
echo -h : Show this message.
echo -p : Publish utilities.
echo.
exit /b 1