Skip to content
Snippets Groups Projects

Changes to checkout feature branch

Merged Shweta Shrivastava requested to merge mr_test into develop
2 files
+ 37
27
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -55,14 +55,16 @@ pipeline {
@@ -55,14 +55,16 @@ pipeline {
stage ("print latest commit info") {
stage ("print latest commit info") {
steps {
steps {
script {
script {
echo "Building on: "
gitlabCommitStatus(name: "Print latest commit info") {
echo " Repository -- ${GIT_URL}"
echo "Building on: "
echo " Branch -- ${GIT_BRANCH}"
echo " Repository -- ${GIT_URL}"
echo " Commit -- ${GIT_COMMIT}"
echo " Branch -- ${GIT_BRANCH}"
echo "ENV eNB_mergeRequest: ${params.eNB_mergeRequest}"
echo " Commit -- ${GIT_COMMIT}"
echo "ENV eNB_Repository: ${params.eNB_Repository}"
echo "ENV eNB_mergeRequest: ${params.eNB_mergeRequest}"
echo "ENV source branch: ${params.eNB_Branch}"
echo "ENV eNB_Repository: ${params.eNB_Repository}"
echo "ENV target branch: ${params.eNB_TargetBranch}"
echo "ENV source branch: ${params.eNB_Branch}"
 
echo "ENV target branch: ${params.eNB_TargetBranch}"
 
}
}
}
}
}
}
}
@@ -70,16 +72,20 @@ pipeline {
@@ -70,16 +72,20 @@ pipeline {
stage ('Clone Ansible toolchain') {
stage ('Clone Ansible toolchain') {
steps {
steps {
script {
script {
sh "git clone https://gitlab.com/shweta.shrivastava/colosseum-cm.git"
gitlabCommitStatus(name: "Clone Ansible scripts") {
 
sh "git clone https://gitlab.com/shweta.shrivastava/colosseum-cm.git"
 
}
}
}
}
}
}
}
stage ('Set up Ansible toolchain') {
stage ('Configure Ansible toolchain') {
steps {
steps {
script {
script {
dir ('colosseum-cm') {
gitlabCommitStatus(name: "Configure Ansible toolchain") {
sh "git checkout oai-ci"
dir ('colosseum-cm') {
sh "./bootstrap.sh ${GIT_URL} ${GIT_BRANCH} ${GIT_COMMIT}"
sh "git checkout oai-ci"
 
sh "./bootstrap.sh ${GIT_URL} ${params.eNB_Branch} ${GIT_COMMIT}"
 
}
}
}
}
}
}
}
@@ -87,8 +93,10 @@ pipeline {
@@ -87,8 +93,10 @@ pipeline {
stage ('Run Ansible toolchain') {
stage ('Run Ansible toolchain') {
steps {
steps {
script {
script {
dir ('colosseum-cm/ansible') {
gitlabCommitStatus(name: "Run Ansible toolchain") {
sh "ansible-playbook oai.yml"
dir ('colosseum-cm/ansible') {
 
sh "ansible-playbook oai.yml"
 
}
}
}
}
}
}
}
Loading