From: Delia Popescu Date: Fri, 27 Apr 2018 07:31:43 +0000 (+0300) Subject: Disable vnf runs for aarch64 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=0d5f20f6eba09de7cb4285374539263196c6377a;hp=2a556f8b1db01fa137f6596862dc39e229cfa276;p=releng.git Disable vnf runs for aarch64 Functest VNF tests are not adapted for aarch64. The tests can be reactivated when they are adapted to execute on aarch64. JIRA: FUNCTEST-964 Change-Id: I2413a6eff831c8dd2751b7bc73ad583f55a00dcf Signed-off-by: Delia Popescu --- diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh index 440b00af9..1df9a554c 100755 --- a/jjb/functest/functest-alpine.sh +++ b/jjb/functest/functest-alpine.sh @@ -172,10 +172,10 @@ elif [ ${FUNCTEST_MODE} == 'tier' ]; then tiers=(${FUNCTEST_TIER}) run_tiers ${tiers} else - if [ ${DEPLOY_TYPE} == 'baremetal' ]; then + if [ ${DEPLOY_TYPE} == 'baremetal' ] && [ "${HOST_ARCH}" != "aarch64" ]; then tiers=(healthcheck smoke features vnf parser) else - tiers=(healthcheck smoke features) + tiers=(healthcheck smoke features parser) fi run_tiers ${tiers} fi