Change kickjenkins to accept argument for integrate into develop_c

This commit is contained in:
Said Fathelbab 2016-09-20 08:44:33 -07:00
Родитель f299bd4342
Коммит 4a951db993
2 изменённых файлов: 19 добавлений и 3 удалений

@ -1 +1 @@
Subproject commit 38f492978d114184838bace26cef58a5c5337419
Subproject commit c7db678dd29acf343ee418d286a208a3702fc71b

Просмотреть файл

@ -1,5 +1,7 @@
@setlocal EnableExtensions EnableDelayedExpansion
@REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
@setlocal EnableExtensions EnableDelayedExpansion
@echo off
set current-path=%~dp0
@ -11,6 +13,19 @@ set build-root=%current-path%\..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM check that we have a valid argument
if "%1" equ "" (
set jenkins_job=_integrate-into-develop
) else if /i "%1" equ "c" (
set jenkins_job=_integrate-into-develop-c-and-wrappers
) else (
echo Usage:
echo kick_jenkins
echo or
echo kick_jenkins c
exit /b 1
)
REM check that we have java handy
call :checkExists java
if not !ERRORLEVEL!==0 exit /b !ERRORLEVEL!
@ -78,11 +93,12 @@ echo commit_id: %current_branch%
echo repo_url: %repo_url%
echo remote: %remote%
echo trackingN: %tracking_name%
echo jenkinJob: %jenkins_job%
echo ****************************************************************
REM kick off the build!
java -jar "%build-root%"\tools\jenkins-cli.jar -s http://azure-iot-sdks-ci.westus.cloudapp.azure.com:8080/ build _integrate-into-develop -p COMMIT_ID=%tracking_name% -p AZURE_REPO=%repo_url% -p BRANCH_TO_MERGE_TO=develop -s -v
java -jar "%build-root%"\tools\jenkins-cli.jar -s http://azure-iot-sdks-ci.westus.cloudapp.azure.com:8080/ build %jenkins_job% -p COMMIT_ID=%tracking_name% -p AZURE_REPO=%repo_url% -p BRANCH_TO_MERGE_TO=develop -s -v
rem -----------------------------------------------------------------------------
rem -- done