summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorAndrei Gheorghiu <andrei.gheorghiu@enea.com>2016-10-18 15:58:06 +0200
committerAndrei Gheorghiu <andrei.gheorghiu@enea.com>2016-10-18 15:58:06 +0200
commit9dbcdedbf1f02dded9cd19d1c0d8d7ca9dbe9b61 (patch)
tree1673abd353b66b10ae897d2b6873db6d5c63a38b /Jenkinsfile
parent45a0f4d2abee371a79e39227bd1d84f8d1122d1a (diff)
downloadel_manifests-standard-9dbcdedbf1f02dded9cd19d1c0d8d7ca9dbe9b61.tar.gz
changed how we get manifest repo url
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 09bb05f..5c4d66c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -7,8 +7,10 @@ BRANCH = env.BRANCH_NAME
7 7
8def scmInstance = scm.getUserRemoteConfigs()[0] 8def scmInstance = scm.getUserRemoteConfigs()[0]
9MANIFEST_REPOSITORY = scmInstance.getUrl() 9MANIFEST_REPOSITORY = scmInstance.getUrl()
10def git_repo_name = scmInstance.getName() 10def git_repo = MANIFEST_REPOSITORY.trim().split('/')[-1]
11env.PROFILE = git_repo_name.split('-')[-1] 11def git_repo_name = git_repo.replace('.git','')
12def profile = git_repo_name.split('-')[-1]
13env.PROFILE = profile
12 14
13print "MANIFEST_REPOSITORY: " + MANIFEST_REPOSITORY 15print "MANIFEST_REPOSITORY: " + MANIFEST_REPOSITORY
14print "git_repo_name: " + git_repo_name 16print "git_repo_name: " + git_repo_name