forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjenkins.build.init.cmd
91 lines (70 loc) · 2.41 KB
/
jenkins.build.init.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
::-------------------------------------------------------------------------------------------------------
:: Copyright (C) Microsoft. All rights reserved.
:: Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
::-------------------------------------------------------------------------------------------------------
@echo off
if not "%JENKINS_BUILD%" == "True" (
echo This script should be run under a Jenkins Build environment
exit /b 2
)
set REPO_ROOT=%~dp0\..
set JENKINS_BUILD_ARGS=
set JENKINS_USE_MSBUILD_12=
:ContinueArgParse
if not [%1]==[] (
if [%1]==[msbuild12] (
set JENKINS_USE_MSBUILD_12=True
goto :ContinueArgParseEnd
)
:: DEFAULT - add any other params to %JENKINS_BUILD_ARGS%
if [%1] NEQ [] (
set JENKINS_BUILD_ARGS=%JENKINS_BUILD_ARGS% %1
goto :ContinueArgParseEnd
)
:ContinueArgParseEnd
shift
goto :ContinueArgParse
)
:: ========================================
:: Set up msbuild.exe
:: ========================================
if "%JENKINS_USE_MSBUILD_12%" == "True" (
echo Skipping Dev14 and trying Dev12...
goto :LABEL_USE_MSBUILD_12
)
where /q msbuild.exe
IF "%ERRORLEVEL%" == "0" (
goto :SkipMsBuildSetup
)
REM Try Dev14 first
set MSBUILD_VERSION=14.0
set MSBUILD_PATH="%ProgramFiles%\msbuild\%MSBUILD_VERSION%\Bin\x86"
if not exist %MSBUILD_PATH%\msbuild.exe (
set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin"
)
if not exist %MSBUILD_PATH%\msbuild.exe (
set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin\amd64"
)
if exist %MSBUILD_PATH%\msbuild.exe (
goto :MSBuildFound
)
echo Dev14 not found, trying Dev %MSBUILD_VERSION%
:LABEL_USE_MSBUILD_12
set MSBUILD_VERSION=12.0
set MSBUILD_PATH="%ProgramFiles%\msbuild\%MSBUILD_VERSION%\Bin\x86"
if not exist %MSBUILD_PATH%\msbuild.exe (
set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin"
)
if not exist %MSBUILD_PATH%\msbuild.exe (
set MSBUILD_PATH="%ProgramFiles(x86)%\msbuild\%MSBUILD_VERSION%\Bin\amd64"
)
if not exist %MSBUILD_PATH%\msbuild.exe (
echo Can't find msbuild.exe in %MSBUILD_PATH%
goto :SkipMsBuildSetup
)
:MSBuildFound
echo MSBuild located at %MSBUILD_PATH%
set PATH=%MSBUILD_PATH%;%PATH%
set JENKINS_USE_MSBUILD_12=
set MSBUILD_PATH=
:SkipMsBuildSetup