summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Scrieciu <catalin.scrieciu@enea.com>2016-07-15 14:23:13 +0200
committerCatalin Scrieciu <catalin.scrieciu@enea.com>2016-07-15 14:23:13 +0200
commitb3742744472a79a1b997281a03f72e17dad443c8 (patch)
tree1c125ff0ee400489abb88d1aa2202ea40f1727c3
parent18a0055a924d7c76dc113f6d6b4a8f17f4372dc6 (diff)
downloadel_manifests-standard-b3742744472a79a1b997281a03f72e17dad443c8.tar.gz
test
-rw-r--r--Jenkinsfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index f75e082..f4de611 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -29,6 +29,7 @@ def imageBuild(){
29def imageBuild(machine, profile, buildStamp, releaseLayer){ 29def imageBuild(machine, profile, buildStamp, releaseLayer){
30 { 30 {
31 it-> node{ 31 it-> node{
32 print 'Starting build for each image type'
32 print machine 33 print machine
33 print profile 34 print profile
34 print buildStamp 35 print buildStamp
@@ -52,6 +53,7 @@ def targetBuild(trg){
52 quiet: true, 53 quiet: true,
53 showAllChanges: true, 54 showAllChanges: true,
54 trace: true]) 55 trace: true])
56 print 'Finished cloning with Repo tool'
55 checkout([$class: 'GitSCM', 57 checkout([$class: 'GitSCM',
56 branches: [[name: '$BRANCH_NAME']], 58 branches: [[name: '$BRANCH_NAME']],
57 doGenerateSubmoduleConfigurations: false, 59 doGenerateSubmoduleConfigurations: false,
@@ -61,6 +63,7 @@ def targetBuild(trg){
61 submoduleCfg: [], 63 submoduleCfg: [],
62 userRemoteConfigs: [[credentialsId: 'a797f854-983e-473e-b221-6d8ebafda16a', 64 userRemoteConfigs: [[credentialsId: 'a797f854-983e-473e-b221-6d8ebafda16a',
63 url: 'git@git.enea.se:linux/meta-enea-test.git']]]) 65 url: 'git@git.enea.se:linux/meta-enea-test.git']]])
66 print 'Finished cloing meta-enea-test'
64 stash includes: 'poky/*', name: trg+'_poky', useDefaultExcludes: false 67 stash includes: 'poky/*', name: trg+'_poky', useDefaultExcludes: false
65 } 68 }
66 } 69 }