From 8d021e159daf094d6056654a1ff5957353357163 Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Mon, 18 Jun 2018 11:52:05 +0200 Subject: Try to checkout aktualizr from pipeline --- scripts/ci/Jenkinsfile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/scripts/ci/Jenkinsfile b/scripts/ci/Jenkinsfile index e7bcf6c..83bd49c 100644 --- a/scripts/ci/Jenkinsfile +++ b/scripts/ci/Jenkinsfile @@ -2,8 +2,8 @@ pipeline { agent none environment { TEST_LOCAL_CONF_APPEND = 'scripts/ci/local.conf.append' - TEST_AKTUALIZR_DIR = '.' - TEST_AKTUALIZR_BRANCH = 'aktualizr/master' + TEST_AKTUALIZR_DIR = 'aktualizr' + TEST_AKTUALIZR_BRANCH = 'origin/master' } stages { stage('checkout') { @@ -11,6 +11,15 @@ pipeline { label 'bitbake' } steps { + dir('aktualizr') { + checkout([$class: 'GitSCM', + userRemoteConfigs: [[url: 'https://github.com/advancedtelematic/aktualizr']], + branches: [[name: '*/master']], + changelog: true, + poll: true, + ]) + } + checkout([$class: 'RepoScm', manifestRepositoryUrl: 'https://github.com/advancedtelematic/updater-repo', manifestBranch: null, -- cgit v1.2.3-54-g00ecf