From a9db26d58618ac814cd42b5863664c0794329e85 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Fri, 17 Jan 2025 14:10:58 -0500 Subject: [PATCH] jjb: Enable polling for libsk and libside pipelines Change-Id: Ia33e1b34a0cab41cb026f8b33661e205945a32cc Signed-off-by: Kienan Stewart --- pipelines/libside/pipeline.groovy | 2 +- pipelines/libsk/pipeline.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/**' -- 2.39.5