summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 9006c44..c69fc5e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -11,12 +11,12 @@ def 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,