-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue SB-21735 merge: Merge pull request #37 from JagadishPujari/auto…
…-deploy Auto deploy
- Loading branch information
Showing
2 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
@Library('deploy-conf') _ | ||
node('build-slave') { | ||
try { | ||
String ANSI_GREEN = "\u001B[32m" | ||
String ANSI_NORMAL = "\u001B[0m" | ||
String ANSI_BOLD = "\u001B[1m" | ||
String ANSI_RED = "\u001B[31m" | ||
String ANSI_YELLOW = "\u001B[33m" | ||
|
||
ansiColor('xterm') { | ||
withEnv(["JAVA_HOME=${JAVA11_HOME}"]) { | ||
stage('Checkout') { | ||
tag_name = env.JOB_NAME.split("/")[ - 1] | ||
pre_checks() | ||
if (!env.hub_org) { | ||
println(ANSI_BOLD + ANSI_RED + "Uh Oh! Please set a Jenkins environment variable named hub_org with value as registery/sunbidrded" + ANSI_NORMAL) | ||
error 'Please resolve the errors and rerun..' | ||
} else println(ANSI_BOLD + ANSI_GREEN + "Found environment variable named hub_org with value as: " + hub_org + ANSI_NORMAL) | ||
} | ||
cleanWs() | ||
def scmVars = checkout scm | ||
checkout scm: [$class: 'GitSCM', branches: [[name: "refs/tags/$tag_name"]], userRemoteConfigs: [[url: scmVars.GIT_URL]]] | ||
build_tag = tag_name + "_" + env.BUILD_NUMBER | ||
commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim() | ||
public_repo_commit_hash = branch_name + "_" + commit_hash | ||
artifact_version = tag_name + "_" + commit_hash | ||
echo "build_tag: " + build_tag | ||
echo "public_repo_commit_hash: " + public_repo_commit_hash | ||
|
||
dir('bot_repo') { | ||
def scmVarsPrivate = checkout scm | ||
checkout scm: ([$class: 'GitSCM', branches: [[name: "refs/heads/master"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: true]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'private_repo_credentials', url: "https://github.com/DIKSHA-NCTE/Diksha-Bot.git"]]]) | ||
private_repo_commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim() | ||
} | ||
|
||
stage('Build') { | ||
env.NODE_ENV = "build" | ||
print "Environment will be : ${env.NODE_ENV}" | ||
build_tag = public_repo_commit_hash + "_" + private_repo_commit_hash + "_" + env.BUILD_NUMBER + "_bot" | ||
sh('cp -r bot_repo/* .') | ||
dir('bot') { | ||
sh('chmod 777 build.sh') | ||
sh("./build.sh ${build_tag} ${env.NODE_NAME} ${hub_org}") | ||
} | ||
|
||
} | ||
|
||
// stage ArchiveArtifacts | ||
archiveArtifacts "metadata.json" | ||
currentBuild.description = "${build_tag}" | ||
|
||
} | ||
currentBuild.result = "SUCCESS" | ||
slack_notify(currentBuild.result, tag_name) | ||
email_notify() | ||
auto_build_deploy() | ||
} | ||
} | ||
catch(err) { | ||
currentBuild.result = "FAILURE" | ||
slack_notify(currentBuild.result, tag_name) | ||
email_notify() | ||
throw err | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
@Library('deploy-conf') _ | ||
node('build-slave') { | ||
try { | ||
String ANSI_GREEN = "\u001B[32m" | ||
String ANSI_NORMAL = "\u001B[0m" | ||
String ANSI_BOLD = "\u001B[1m" | ||
String ANSI_RED = "\u001B[31m" | ||
String ANSI_YELLOW = "\u001B[33m" | ||
|
||
ansiColor('xterm') { | ||
withEnv(["JAVA_HOME=${JAVA11_HOME}"]) { | ||
stage('Checkout') { | ||
tag_name = env.JOB_NAME.split("/")[ - 1] | ||
pre_checks() | ||
if (!env.hub_org) { | ||
println(ANSI_BOLD + ANSI_RED + "Uh Oh! Please set a Jenkins environment variable named hub_org with value as registery/sunbidrded" + ANSI_NORMAL) | ||
error 'Please resolve the errors and rerun..' | ||
} else println(ANSI_BOLD + ANSI_GREEN + "Found environment variable named hub_org with value as: " + hub_org + ANSI_NORMAL) | ||
} | ||
cleanWs() | ||
def scmVars = checkout scm | ||
checkout scm: [$class: 'GitSCM', branches: [[name: "refs/tags/$tag_name"]], userRemoteConfigs: [[url: scmVars.GIT_URL]]] | ||
build_tag = tag_name + "_" + env.BUILD_NUMBER | ||
commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim() | ||
public_repo_commit_hash = branch_name + "_" + commit_hash | ||
artifact_version = tag_name + "_" + commit_hash | ||
echo "build_tag: " + build_tag | ||
echo "public_repo_commit_hash: " + public_repo_commit_hash | ||
|
||
dir('bot_repo') { | ||
def scmVarsPrivate = checkout scm | ||
checkout scm: ([$class: 'GitSCM', branches: [[name: "refs/heads/master"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: true]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'private_repo_credentials', url: "https://github.com/DIKSHA-NCTE/Diksha-Bot.git"]]]) | ||
private_repo_commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim() | ||
} | ||
|
||
stage('Build') { | ||
env.NODE_ENV = "build" | ||
print "Environment will be : ${env.NODE_ENV}" | ||
build_tag = public_repo_commit_hash + "_" + private_repo_commit_hash + "_" + env.BUILD_NUMBER + "_router" | ||
sh('cp -r bot_repo/* .') | ||
dir('router') { | ||
sh('chmod 777 build.sh') | ||
sh("./build.sh ${build_tag} ${env.NODE_NAME} ${hub_org}") | ||
} | ||
|
||
} | ||
|
||
// stage ArchiveArtifacts | ||
archiveArtifacts "metadata.json" | ||
currentBuild.description = "${build_tag}" | ||
|
||
} | ||
currentBuild.result = "SUCCESS" | ||
slack_notify(currentBuild.result, tag_name) | ||
email_notify() | ||
auto_build_deploy() | ||
} | ||
} | ||
catch(err) { | ||
currentBuild.result = "FAILURE" | ||
slack_notify(currentBuild.result, tag_name) | ||
email_notify() | ||
throw err | ||
} | ||
} |