From: Fatih Degirmenci Date: Wed, 8 May 2019 08:54:02 +0000 (+0200) Subject: Enable InfluxDB reporting for Yardstick on baremetal X-Git-Url: https://gerrit.nordix.org/gitweb?a=commitdiff_plain;h=c057cb46031607f1be118a118e25fb402275c750;p=infra%2Fcicd.git Enable InfluxDB reporting for Yardstick on baremetal Change-Id: I1bb74f445ff25204f85a96f95e39486b244bf4e2 --- diff --git a/jjb/cloud-infra/cloud-infra-periodic-engine.yaml b/jjb/cloud-infra/cloud-infra-periodic-engine.yaml index 5cf2eace8..8bddd1fa5 100644 --- a/jjb/cloud-infra/cloud-infra-periodic-engine.yaml +++ b/jjb/cloud-infra/cloud-infra-periodic-engine.yaml @@ -62,8 +62,10 @@ type: - virtual: slave-label: 'vpod-deploy-city' + yardstick-dispatcher: 'file' - baremetal: slave-label: 'baremetal-deploy' + yardstick-dispatcher: 'influxdb' phase: - deploy: @@ -127,6 +129,10 @@ name: TEST_SUITE default: 'smoke' description: 'Test suite to run' + - string: + name: YARDSTICK_DISPATCHER + default: '{yardstick-dispatcher}' + description: 'Dispatcher to use for Yardstick reporting' - string: name: CLEANUP default: 'true' @@ -208,6 +214,7 @@ DEPLOY_TYPE=$DEPLOY_TYPE DEPLOY_SCENARIO=$DEPLOY_SCENARIO TEST_SUITE=$TEST_SUITE + YARDSTICK_DISPATCHER=$YARDSTICK_DISPATCHER CLEANUP=$CLEANUP node-parameters: true kill-phase-on: NEVER @@ -271,6 +278,10 @@ name: TEST_REPO_URL default: 'https://gerrit.nordix.org/infra/test.git' description: 'URL to Nordix Cloud Infra test repository' + - string: + name: YARDSTICK_DISPATCHER + default: 'file' + description: 'Dispatcher to use for Yardstick reporting' - string: name: CLEANUP default: 'false' diff --git a/jjb/cloud-infra/cloud-infra-test.sh b/jjb/cloud-infra/cloud-infra-test.sh index 2b85f0ddb..d74f47a0e 100644 --- a/jjb/cloud-infra/cloud-infra-test.sh +++ b/jjb/cloud-infra/cloud-infra-test.sh @@ -30,6 +30,6 @@ set -o pipefail # execute cloud engine test.sh script with arguments cd $WORKSPACE -./test/test.sh -c -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO +./test/test.sh -c -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO -d $YARDSTICK_DISPATCHER # vim: set ts=2 sw=2 expandtab: