From 8446b9d31494e75c2900f0f237ffad5484b9bfa5 Mon Sep 17 00:00:00 2001 From: Lasse Kaihlavirta Date: Mon, 9 Nov 2020 11:57:50 +0200 Subject: [PATCH] Fix trigger path and improve docker tag - fix the files parameter (which translates into file path in final Jenkins configuration) for the gerrit trigger - use BUILD_TAG instead of BUILD_ID for docker tag to be passed Issue-ID: INT-1760 Signed-off-by: Lasse Kaihlavirta Change-Id: I4c0607e3ee0220cccecfd560dd6cd4cfb59de33f --- jjb/integration/integration-templates-csit.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jjb/integration/integration-templates-csit.yaml b/jjb/integration/integration-templates-csit.yaml index 5df244258..c978753e8 100644 --- a/jjb/integration/integration-templates-csit.yaml +++ b/jjb/integration/integration-templates-csit.yaml @@ -168,20 +168,20 @@ - project: "{project-name}-{stream}-docker-golang-shell-daily" condition: UNSTABLE_OR_BETTER predefined-parameters: | - UNIQUE_DOCKER_TAG=$BUILD_ID + UNIQUE_DOCKER_TAG=$BUILD_TAG block: true - trigger-builds: - project: "{project-name}-{stream}-csit-{review-functionality}" condition: UNSTABLE_OR_BETTER predefined-parameters: | - UNIQUE_DOCKER_TAG=$BUILD_ID + UNIQUE_DOCKER_TAG=$BUILD_TAG block: true triggers: - gerrit-trigger-patch-submitted: server: '{server-name}' project: '{project}' branch: '{branch}' - files: '**/{project}/**' + files: '**' publishers: - lf-infra-publish -- 2.16.6