From dfa377bc9bad1e258cbcfa673da9be4b1290b40e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= <sebastien.blin@savoirfairelinux.com> Date: Mon, 5 Dec 2022 10:13:18 -0500 Subject: [PATCH] jenkinsfile: add missing steps Change-Id: I0844f54e0f4c4e0785938fa88d1f20bbab9cf757 --- extras/ci/client-qt-gnulinux/Jenkinsfile | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/extras/ci/client-qt-gnulinux/Jenkinsfile b/extras/ci/client-qt-gnulinux/Jenkinsfile index 46575abc7..c62502a11 100644 --- a/extras/ci/client-qt-gnulinux/Jenkinsfile +++ b/extras/ci/client-qt-gnulinux/Jenkinsfile @@ -53,16 +53,18 @@ pipeline { stages { stage('SCM Checkout') { - // Wipe workspace and fetch jami-daemon - checkout changelog: true, poll: false, - scm: [$class: 'GitSCM', - branches: [[name: 'FETCH_HEAD']], - doGenerateSubmoduleConfigurations: false, - extensions: [ - [$class: 'CloneOption', noTags: true, reference: '', shallow: true], - [$class: 'WipeWorkspace']], - submoduleCfg: [], - userRemoteConfigs: [[refspec: '${GERRIT_REFSPEC}', url: 'https://${JAMI_GERRIT_URL}/jami-client-qt']]] + steps { + // Wipe workspace and fetch jami-daemon + checkout changelog: true, poll: false, + scm: [$class: 'GitSCM', + branches: [[name: 'FETCH_HEAD']], + doGenerateSubmoduleConfigurations: false, + extensions: [ + [$class: 'CloneOption', noTags: true, reference: '', shallow: true], + [$class: 'WipeWorkspace']], + submoduleCfg: [], + userRemoteConfigs: [[refspec: '${GERRIT_REFSPEC}', url: 'https://${JAMI_GERRIT_URL}/jami-client-qt']]] + } } stage('Init repository') { -- GitLab