summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Scrieciu <catalin.scrieciu@enea.com>2016-07-14 16:06:35 +0200
committerCatalin Scrieciu <catalin.scrieciu@enea.com>2016-07-14 16:06:35 +0200
commitece83836061f40ef852547e8d50aca73083d8d82 (patch)
tree04a55caf25d078dfe224b5496770a57fdda598a6
parent2093940f347e17b013d02c32d0abd1e8974a4baa (diff)
downloadel_manifests-standard-ece83836061f40ef852547e8d50aca73083d8d82.tar.gz
test
-rw-r--r--Jenkinsfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 392fbbc..086d9db 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -10,13 +10,13 @@ import groovy.io.FileType
10def targetBuild(trg){ 10def targetBuild(trg){
11 { 11 {
12 target=trg-> node{ 12 target=trg-> node{
13 sh 'mkdir trg' 13 sh 'mkdir ${trg}'
14 dir ('$trg'){ 14 dir ('${trg}'){
15 unstash 'eltf_scripts' 15 unstash 'eltf_scripts'
16 checkout([$class: 'RepoScm', 16 checkout([$class: 'RepoScm',
17 currentBranch: true, 17 currentBranch: true,
18 manifestBranch: '$BRANCH_NAME', 18 manifestBranch: '$BRANCH_NAME',
19 manifestFile: '$trg/default.xml', 19 manifestFile: '${trg}/default.xml',
20 //The hardcoded repository should be replaced by a generic name, eg. $GIT_PATH+el_manifests-$PROFILE 20 //The hardcoded repository should be replaced by a generic name, eg. $GIT_PATH+el_manifests-$PROFILE
21 manifestRepositoryUrl: 'http://git.enea.se/cgit/various/el_manifests-standard.git', 21 manifestRepositoryUrl: 'http://git.enea.se/cgit/various/el_manifests-standard.git',
22 quiet: true, 22 quiet: true,