Commit 6eca8db1 authored by Boris Djalal's avatar Boris Djalal

Fix

Signed-off-by: default avatarBoris Djalal <boris.djalal@eurecom.fr>
parent d7f486f8
...@@ -54,12 +54,14 @@ pipeline { ...@@ -54,12 +54,14 @@ pipeline {
} }
stage ("Print latest commit info") { stage ("Print latest commit info") {
steps { steps {
echo "Building on: " script {
echo " Repository -- ${GIT_URL}" echo "Building on: "
echo " Branch -- ${GIT_BRANCH}" echo " Repository -- ${GIT_URL}"
echo " Commit -- ${GIT_COMMIT}" echo " Branch -- ${GIT_BRANCH}"
sh "git log -n1" echo " Commit -- ${GIT_COMMIT}"
eNB_Repository = ${GIT_URL} sh "git log -n1"
eNB_Repository = ${GIT_URL}
}
} }
} }
stage ("Verify Parameters") { stage ("Verify Parameters") {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment