summaryrefslogtreecommitdiffstats
path: root/scripts/ci/Jenkinsfile.bleeding
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2018-06-26 15:53:00 +0200
committerLaurent Bonnans <laurent.bonnans@here.com>2018-09-06 11:45:07 +0200
commit7023fdda425f9d5e3b48e2cd12f961c0060ace54 (patch)
tree62c62ade104ff7f1eae67c75cb8f82f6c3931ae3 /scripts/ci/Jenkinsfile.bleeding
parent0d3b28dac079df41132d4a80cc232105cde1bcc3 (diff)
downloadmeta-updater-7023fdda425f9d5e3b48e2cd12f961c0060ace54.tar.gz
Setup garage credentials for oe-selftest CI
Diffstat (limited to 'scripts/ci/Jenkinsfile.bleeding')
-rw-r--r--scripts/ci/Jenkinsfile.bleeding16
1 files changed, 5 insertions, 11 deletions
diff --git a/scripts/ci/Jenkinsfile.bleeding b/scripts/ci/Jenkinsfile.bleeding
index aba7d39..f4d8883 100644
--- a/scripts/ci/Jenkinsfile.bleeding
+++ b/scripts/ci/Jenkinsfile.bleeding
@@ -56,27 +56,21 @@ pipeline {
56 ''' 56 '''
57 } 57 }
58 } 58 }
59 stage('build-core-image-minimal') { 59 stage('build-core-image-minimal+oe-selftest') {
60 agent { 60 agent {
61 dockerfile { 61 dockerfile {
62 filename 'scripts/ci/Dockerfile.bitbake' 62 filename 'scripts/ci/Dockerfile.bitbake'
63 args '-v /opt/jenkins/bitbake-common:/opt/jenkins/bitbake-common' 63 args '-v /opt/jenkins/bitbake-common:/opt/jenkins/bitbake-common'
64 } 64 }
65 } 65 }
66 environment {
67 TEST_AKTUALIZR_CREDENTIALS = credentials('garage-credentials')
68 }
66 steps { 69 steps {
67 sh 'scripts/ci/configure.sh' 70 sh 'scripts/ci/configure.sh'
68 71
69 sh 'scripts/ci/build.sh core-image-minimal' 72 sh 'scripts/ci/build.sh core-image-minimal'
70 } 73
71 }
72 stage('oe-selftest') {
73 agent {
74 dockerfile {
75 filename 'scripts/ci/Dockerfile.bitbake'
76 args '-v /opt/jenkins/bitbake-common:/opt/jenkins/bitbake-common'
77 }
78 }
79 steps {
80 sh 'scripts/ci/oe-selftest.sh' 74 sh 'scripts/ci/oe-selftest.sh'
81 } 75 }
82 } 76 }