diff options
author | Delia Popescu <delia.popescu@enea.com> | 2018-04-27 10:31:43 +0300 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-05-04 22:28:59 +0200 |
commit | 0d5f20f6eba09de7cb4285374539263196c6377a (patch) | |
tree | 8e989b5c109f9547406978899b423c05d5a1a39f /jjb | |
parent | 2a556f8b1db01fa137f6596862dc39e229cfa276 (diff) |
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 <delia.popescu@enea.com>
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/functest/functest-alpine.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |