From 1f673054ec7b10243e59d9e142435fadf593d0e0 Mon Sep 17 00:00:00 2001 From: Lasse Kaihlavirta Date: Thu, 15 Oct 2020 12:37:40 +0300 Subject: [PATCH] Take "disabled" value from variable for TestNG - replace hardcoded "disabled: false" with variable value in TestNG CSIT templates - it remains to be analyzed if we should really support TestNG in the templates at all, but as long as SDC has those tests (as they still do), we can't remove them from the templates Issue-ID: CIMAN-391 Signed-off-by: Lasse Kaihlavirta Change-Id: If43871ff563b3ead8666321ef4912ebfa9d252c1 --- jjb/integration/integration-templates-csit.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jjb/integration/integration-templates-csit.yaml b/jjb/integration/integration-templates-csit.yaml index 40a6a93ff..b6568ae98 100644 --- a/jjb/integration/integration-templates-csit.yaml +++ b/jjb/integration/integration-templates-csit.yaml @@ -125,7 +125,7 @@ - job-template: name: '{project-name}-{stream}-verify-csit-{functionality}-testng' - disabled: false + disabled: '{disabled}' project-type: freestyle build-node: 'ubuntu1804-docker-8c-8g' @@ -209,7 +209,7 @@ - job-template: name: '{project-name}-arm64-{stream}-verify-csit-{functionality}-testng' - disabled: false + disabled: '{disabled}' project-type: freestyle build-node: 'ubuntu1804-docker-arm64-4c-2g' @@ -423,7 +423,7 @@ - job-template: name: '{project-name}-{stream}-csit-{functionality}-testng' - disabled: false + disabled: '{disabled}' project-type: freestyle build-node: 'ubuntu1804-docker-8c-8g' @@ -510,7 +510,7 @@ - job-template: name: '{project-name}-arm64-{stream}-csit-{functionality}-testng' - disabled: false + disabled: '{disabled}' project-type: freestyle build-node: 'ubuntu1804-docker-arm64-4c-2g' -- 2.16.6