diff options
author | Lasse Kaihlavirta <l.kaihlavirt@partner.samsung.com> | 2020-10-15 12:37:40 +0300 |
---|---|---|
committer | Lasse Kaihlavirta <l.kaihlavirt@partner.samsung.com> | 2020-10-15 12:37:40 +0300 |
commit | 1f673054ec7b10243e59d9e142435fadf593d0e0 (patch) | |
tree | 125d898647527950923a784af1e8474b2d3d0b25 /jjb | |
parent | 590b54a1c6f9e7858731928e8a24ca2742b68114 (diff) |
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 <l.kaihlavirt@partner.samsung.com>
Change-Id: If43871ff563b3ead8666321ef4912ebfa9d252c1
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/integration/integration-templates-csit.yaml | 8 |
1 files 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' |