forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins.testone.cmd
51 lines (41 loc) · 1.53 KB
/
jenkins.testone.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
::-------------------------------------------------------------------------------------------------------
:: 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
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
)
:: ============================================================================
:: Main script
:: ============================================================================
:main
set JENKINS_BUILD=True
call test\jenkins.testone.cmd %*
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.
echo %_ENTRY_SCRIPT_NAME% x64 debug
echo %_ENTRY_SCRIPT_NAME% x64 test
goto :end
:: ============================================================================
:: Epilogue of script (cleanup)
:: ============================================================================
:end
endlocal