From 8d82e306ddcae2570f0b241dd27cca4d60d84923 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 5 Jul 2022 17:13:43 +0200 Subject: [PATCH] Do not install rally on first upgrade run In order to save up some time for upgrade jobs, we avoid installing rally during first run of upgrade (on branch-1) as rally is branchless. Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-os_rally/+/848666 Change-Id: I00ac6c0ce83c952efa37640725296810ee11db1c --- scripts/gate-check-commit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gate-check-commit.sh b/scripts/gate-check-commit.sh index 463fc0a817..66308dad62 100755 --- a/scripts/gate-check-commit.sh +++ b/scripts/gate-check-commit.sh @@ -63,7 +63,7 @@ export SETUP_ARA=${SETUP_ARA:-true} if [[ "${ACTION}" == "upgrade" ]]; then # Store the target SHA/branch export UPGRADE_TARGET_BRANCH=$(git rev-parse HEAD) - export OPENSTACK_SETUP_EXTRA_ARGS="-e tempest_install=no -e tempest_run=no" + export OPENSTACK_SETUP_EXTRA_ARGS="-e tempest_install=no -e tempest_run=no -e rally_install=no" export ANSIBLE_GATHER_SUBSET="network,hardware,virtual" # Now checkout the source SHA/branch