# ignite-456: slurp.sh 2
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/e706cfc7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/e706cfc7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/e706cfc7 Branch: refs/heads/ignite-456 Commit: e706cfc727302f2731b711f01b49cb7e7922f6c5 Parents: 087f2ff Author: null <null> Authored: Thu May 21 22:00:17 2015 +0300 Committer: null <null> Committed: Thu May 21 22:00:17 2015 +0300 ---------------------------------------------------------------------- dev-tools/slurp.sh | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e706cfc7/dev-tools/slurp.sh ---------------------------------------------------------------------- diff --git a/dev-tools/slurp.sh b/dev-tools/slurp.sh index 9565a5c..bf1e91a 100644 --- a/dev-tools/slurp.sh +++ b/dev-tools/slurp.sh @@ -17,47 +17,42 @@ # # +# Copy this script file at root of ignite repo. +# Fill all variables. # -# -DEFAULT_BRANCH='ignite-sprint-5' # +# Default branch name. Need to use last version of "jiraslurp" scripts. # -# -TC_URL='' +DEFAULT_BRANCH='ignite-sprint-5' # +# TC URL. It is 10.30.0.229 for public TC from agents. # -# -GIT_USER_NAME='test_user_name' +TC_URL='10.30.0.229' # +# Jira user name to add comments aboyt triggered builds. # -# -GIT_USER_EMAIL='test.m...@test.com' +JIRA_USER='tc_commenter' # -# -# -JIRA_USER='' - -# -# +# Jira password. # JIRA_PWD='' # +# TC user which have permissions to trigger new builds. # -# -TASK_RUNNER_PWD='' +TASK_RUNNER_USER='task_runner' # +# TC user password. # -# -TASK_RUNNER_USER='' +TASK_RUNNER_PWD='' # -# +# Space separated logins of jira useres which were approved to auto triggering patches. Like 'user1 user2 user3'. # JIRA_CONTRIBUTORS='' @@ -65,6 +60,8 @@ git fetch git checkout ${DEFAULT_BRANCH} +git pull + export TC_URL=${TC_URL} export GIT_USER_NAME=${GIT_USER_NAME} export GIT_USER_EMAIL=${GIT_USER_EMAIL} @@ -72,5 +69,6 @@ export JIRA_USER=${JIRA_USER} export JIRA_PWD=${JIRA_PWD} export TASK_RUNNER_PWD=${TASK_RUNNER_PWD} export TASK_RUNNER_USER=${TASK_RUNNER_USER} +export JIRA_CONTRIBUTORS=${JIRA_CONTRIBUTORS} gradle slurp -b dev-tools/build.gradle