From 462c397e3cb8809993c0d1ae19644214cfbd06a3 Mon Sep 17 00:00:00 2001 From: Andrew Kroh Date: Wed, 22 Nov 2023 09:54:14 -0400 Subject: [PATCH] ci - bump daily job to use 8.12.0-SNAPSHOT (#8471) Bump daily job to use 8.12.0-SNAPSHOT. I could not use 8.12-SNAPSHOT because it was not available in the Docker registry. --- .ci/schedule-daily.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/schedule-daily.groovy b/.ci/schedule-daily.groovy index 6f97948d223..6c076bb880e 100644 --- a/.ci/schedule-daily.groovy +++ b/.ci/schedule-daily.groovy @@ -36,12 +36,12 @@ pipeline { ) } } - stage('with stack v8.11') { + stage('with stack v8.12.0') { steps { build( job: env.INTEGRATION_JOB, parameters: [ - stringParam(name: 'stackVersion', value: '8.11-SNAPSHOT'), + stringParam(name: 'stackVersion', value: '8.12.0-SNAPSHOT'), booleanParam(name: 'force_check_all', value: true), booleanParam(name: 'skip_publishing', value: true), ],