From 1bfba2fef48010181996e37cb87544e2379bff20 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Fri, 10 Apr 2020 14:47:06 +0200 Subject: [PATCH] iec: exclude seba_on_arm from virtual PODs Virtual PODs are slow and often cause issues with the SEBA on arm deployments, raising misleading errors in our testing. Since now we have a baremetal POD that will cover SEBA testing, exclude the flaky virtual installations for SEBA. Change-Id: I147bdd13d5d213837fefb25e8d299bb91e60ebf5 Signed-off-by: Alexandru Avadanii --- jjb/akraino-templates/akraino-iec-templates.yaml | 2 ++ jjb/iec/iec.yaml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/jjb/akraino-templates/akraino-iec-templates.yaml b/jjb/akraino-templates/akraino-iec-templates.yaml index df14cbe..9fba10c 100644 --- a/jjb/akraino-templates/akraino-iec-templates.yaml +++ b/jjb/akraino-templates/akraino-iec-templates.yaml @@ -61,10 +61,12 @@ block: true - project: !j2: | + {%- if deploy_type not in ['virtual'] -%} {%- for uc in usecase -%} iec-{{ iecType }}-install-{{ uc }}-{{ installer }}-{{ deploy_type }}-{{ os }}-daily-{{ stream }} {%- if not loop.last -%},{%- endif -%} {%- endfor %} + {%- endif -%} current-parameters: true same-node: true block: true diff --git a/jjb/iec/iec.yaml b/jjb/iec/iec.yaml index d7a5e1e..de21f84 100644 --- a/jjb/iec/iec.yaml +++ b/jjb/iec/iec.yaml @@ -66,6 +66,9 @@ - installer: fuel deploy_type: baremetal os: ubuntu1604 + # SEBA on virtual PODs should be excluded + - deploy_type: virtual + usecase: seba_on_arm # ------------------------------- # USECASE DEFINITIONS -- 2.16.6