diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-02-12 11:38:05 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-02-12 11:42:11 +0100 |
commit | 1ca9bc96cb5f566e9db385058b2b4e3b399c27d3 (patch) | |
tree | 2bca42c01b2067856df51ab847e3203f38f2f1e4 /jjb | |
parent | b1d420d23be0c0858548d825088a511ace371550 (diff) |
Stop running functest-component if hunter or newer
It conforms with [1].
[1] https://gerrit.opnfv.org/gerrit/#/c/66911/
Change-Id: I07a2aabb4027f4dcf766b01a4cdb326316c2a398
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/functest/functest-alpine.sh | 12 | ||||
-rw-r--r-- | jjb/functest/functest-docker.yaml | 2 |
2 files changed, 9 insertions, 5 deletions
diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh index 52f65ba7e..cf1b56976 100755 --- a/jjb/functest/functest-alpine.sh +++ b/jjb/functest/functest-alpine.sh @@ -59,10 +59,8 @@ run_test() { FUNCTEST_IMAGE=${REPO}/functest-healthcheck:${DOCKER_TAG} ;; neutron-tempest-plugin-api|rally_sanity|refstack_defcore|tempest_full|tempest_scenario|patrole|snaps_smoke|neutron_trunk|networking-bgpvpn|networking-sfc|barbican) FUNCTEST_IMAGE=${REPO}/functest-smoke:${DOCKER_TAG} ;; - rally_jobs|shaker|vmtp) + rally_full|rally_jobs|shaker|vmtp) FUNCTEST_IMAGE=${REPO}/functest-benchmarking:${DOCKER_TAG} ;; - rally_full) - FUNCTEST_IMAGE=${REPO}/functest-components:${DOCKER_TAG} ;; cloudify|cloudify_ims|heat_ims|vyos_vrouter|juju_epc) FUNCTEST_IMAGE=${REPO}/functest-vnf:${DOCKER_TAG} ;; doctor-notification|bgpvpn|functest-odl-sfc|barometercollectd|fds|vgpu|stor4nfv_os) @@ -273,15 +271,19 @@ else if [[ ${BRANCH} == "stable/fraser" ]]; then tiers=(healthcheck smoke features vnf parser) tests=(tempest_full_parallel) - else + elif [[ ${BRANCH} == "stable/gambia" ]]; then tiers=(healthcheck smoke benchmarking features vnf components) + else + tiers=(healthcheck smoke benchmarking features vnf) fi else if [[ ${BRANCH} == "stable/fraser" ]]; then tiers=(healthcheck smoke features parser) tests=(tempest_full_parallel) + elif [[ ${BRANCH} == "stable/gambia" ]]; then + tiers=(healthcheck smoke benchmarking features vnf components) else - tiers=(healthcheck smoke benchmarking features components) + tiers=(healthcheck smoke benchmarking features) fi fi run_tiers ${tiers} diff --git a/jjb/functest/functest-docker.yaml b/jjb/functest/functest-docker.yaml index 03ef43629..71215cae1 100644 --- a/jjb/functest/functest-docker.yaml +++ b/jjb/functest/functest-docker.yaml @@ -43,6 +43,8 @@ exclude: - stream: 'master' image: 'components' + - stream: 'hunter' + image: 'components' - stream: 'master' image: 'parser' - stream: 'hunter' |