From 26a67bd4552a5972024b00665279e3f1879e4fa6 Mon Sep 17 00:00:00 2001 From: Sergey Skripnick Date: Fri, 26 Jun 2015 13:51:39 +0300 Subject: [PATCH] Fix gate_hook in rally-cue experimental job Script gate_hook.sh from cue tree should be run in gate_hook in order to properly configure cue service and install cue client. Also turned of tempest tests for this job. Change-Id: I4df9a0dd81307742fd824e4bf765e6374afc82ee --- jenkins/jobs/rally.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/jenkins/jobs/rally.yaml b/jenkins/jobs/rally.yaml index aaea15f8f5..63d6a9186b 100644 --- a/jenkins/jobs/rally.yaml +++ b/jenkins/jobs/rally.yaml @@ -394,12 +394,12 @@ export ENABLED_SERVICES=rally export PYTHONUNBUFFERED=true export DEVSTACK_GATE_TIMEOUT=100 - export DEVSTACK_GATE_INSTALL_TESTONLY=1 - export DEVSTACK_GATE_TEMPEST=1 - export DEVSTACK_GATE_TEMPEST_NOTESTS=1 + export DEVSTACK_GATE_TEMPEST=0 + export DEVSTACK_GATE_EXERCISES=0 export PROJECTS="stackforge/cue stackforge/python-cueclient $PROJECTS" function pre_test_hook { + # Install cue-devstack integration cd /opt/stack/new/cue/tests ./pre_test_hook.sh rabbitmq # Install rally-devstack integration @@ -407,6 +407,12 @@ } export -f pre_test_hook + function gate_hook { + cd /opt/stack/new/cue/tests + ./gate_hook.sh rabbitmq + } + export -f gate_hook + function post_test_hook { $BASE/new/rally/tests/ci/rally-gate.py }