From: Kienan Stewart Date: Fri, 17 Jan 2025 19:10:58 +0000 (-0500) Subject: jjb: Enable polling for libsk and libside pipelines X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=a9db26d58618ac814cd42b5863664c0794329e85;p=lttng-ci.git jjb: Enable polling for libsk and libside pipelines Change-Id: Ia33e1b34a0cab41cb026f8b33661e205945a32cc Signed-off-by: Kienan Stewart --- diff --git a/pipelines/libside/pipeline.groovy b/pipelines/libside/pipeline.groovy index 8e30f8e..a66564c 100644 --- a/pipelines/libside/pipeline.groovy +++ b/pipelines/libside/pipeline.groovy @@ -63,7 +63,7 @@ pipeline { steps { dir('src/libside') { - checkout([$class: 'GitSCM', branches: [[name: "${params.LIBSIDE_GIT_BRANCH}"]], userRemoteConfigs: [[url: "${params.LIBSIDE_GIT_URL}"]]]) + checkout([$class: 'GitSCM', branches: [[name: "${params.LIBSIDE_GIT_BRANCH}"]], userRemoteConfigs: [[url: "${params.LIBSIDE_GIT_URL}"]], poll: true, changelog: true]) } stash name: 'libside-source', includes: 'src/libside/**' diff --git a/pipelines/libsk/pipeline.groovy b/pipelines/libsk/pipeline.groovy index b086081..9dab8de 100644 --- a/pipelines/libsk/pipeline.groovy +++ b/pipelines/libsk/pipeline.groovy @@ -58,7 +58,7 @@ pipeline { steps { dir('src/libsk') { - checkout([$class: 'GitSCM', branches: [[name: "${params.LIBSK_GIT_BRANCH}"]], userRemoteConfigs: [[url: "${params.LIBSK_GIT_URL}", credentialsId: 'a6e08541-e7fd-4da2-b58a-b87ee37736ef']]]) + checkout([$class: 'GitSCM', branches: [[name: "${params.LIBSK_GIT_BRANCH}"]], userRemoteConfigs: [[url: "${params.LIBSK_GIT_URL}", credentialsId: 'a6e08541-e7fd-4da2-b58a-b87ee37736ef']], pool: true, changelog: true]) } stash name: 'libsk-source', includes: 'src/libsk/**'