From: Cédric Ollivier Date: Sat, 23 Mar 2019 12:43:58 +0000 (+0100) Subject: Set max microversion in all tempest confs X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=07be796a1d5ebf3864679b49d5219f946c65e10a;hp=3b5bd364379fba7259455d16cb74ac5c394763bb;p=releng.git Set max microversion in all tempest confs Else refstack_defcore fails due to the skipped test [1] [1] https://artifacts.opnfv.org/logs/functest/ericsson-virtual1/2019-03-22_22-18-26/refstack_defcore/tempest-report.html Change-Id: I33accdf06154d784042c7ddc8dac83f902433770 Signed-off-by: Cédric Ollivier --- diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh index 796da8d6c..18fec99ad 100755 --- a/jjb/functest/functest-alpine.sh +++ b/jjb/functest/functest-alpine.sh @@ -227,6 +227,26 @@ volume-feature-enabled: EOF ;; esac +case ${BRANCH} in +master) + cat << EOF >> "${tempest_conf_yaml}" +compute: + max_microversion: latest +EOF + ;; +stable/hunter) + cat << EOF >> "${tempest_conf_yaml}" +compute: + max_microversion: 2.65 +EOF + ;; +stable/gambia) + cat << EOF >> "${tempest_conf_yaml}" +compute: + max_microversion: 2.60 +EOF + ;; +esac echo "tempest_conf.yaml:" && cat "${tempest_conf_yaml}" volumes="${images_vol} ${results_vol} ${sshkey_vol} ${libvirt_vol} \