summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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,