forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathci.buildone.cmd
More file actions
51 lines (40 loc) · 1.36 KB
/
ci.buildone.cmd
File metadata and controls
51 lines (40 loc) · 1.36 KB
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
::-------------------------------------------------------------------------------------------------------
:: Copyright (C) Microsoft. All rights reserved.
:: Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
:: Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
::-------------------------------------------------------------------------------------------------------
@echo off
setlocal
if "%_ENTRY_SCRIPT_NAME%"=="" (
set _ENTRY_SCRIPT_NAME=%0
)
REM check that we have enough parameters
if "%1"=="" (
goto :usage
)
if "%2"=="" (
goto :usage
)
pushd %~dp0
call ci.build.init.cmd %*
set _BuildArch=
set _BuildType=
call ci.build.cmd %JENKINS_BUILD_ARGS%
popd
goto :end
:: ============================================================================
:: Not enough params
:: ============================================================================
:usage
echo Not enough parameters. Please specify architecture and type.
echo Examples:
echo.
echo %_ENTRY_SCRIPT_NAME% x86 debug
echo %_ENTRY_SCRIPT_NAME% x86 test
echo %_ENTRY_SCRIPT_NAME% x86 release
echo.
echo %_ENTRY_SCRIPT_NAME% x64 debug
echo %_ENTRY_SCRIPT_NAME% x64 test
echo %_ENTRY_SCRIPT_NAME% x64 release
:end
endlocal