diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2018-05-07 13:59:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-05-07 13:59:45 +0000 |
commit | ec9ee453c5a62e98003b8059754e578d085e1c96 (patch) | |
tree | 1dfe0d945c939b6843a392b31f5c922da7a8207d /jjb/functest/functest-alpine.sh | |
parent | ef5e612469b7d4a03ad0ac9ffede40e8203a4f27 (diff) | |
parent | 0d5f20f6eba09de7cb4285374539263196c6377a (diff) |
Merge "Disable vnf runs for aarch64"
Diffstat (limited to 'jjb/functest/functest-alpine.sh')
-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 |