From a263a218883fa0605f8264f29699b636f7e359c1 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 2 Jul 2013 18:04:09 -0400 Subject: [PATCH] Add a periodic job to run the stress tests. This commit adds a periodic jenkins job to run the tempest stress tests. Change-Id: I58edb56d19c3b4e3b572e02b6ece42955a4d9933 Reviewed-on: https://review.openstack.org/35397 Reviewed-by: Clark Boylan Approved: James E. Blair Reviewed-by: James E. Blair Tested-by: Jenkins --- .../config/devstack-gate.yaml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/modules/openstack_project/files/jenkins_job_builder/config/devstack-gate.yaml b/modules/openstack_project/files/jenkins_job_builder/config/devstack-gate.yaml index 4d2c348682..655d5f5078 100644 --- a/modules/openstack_project/files/jenkins_job_builder/config/devstack-gate.yaml +++ b/modules/openstack_project/files/jenkins_job_builder/config/devstack-gate.yaml @@ -442,6 +442,44 @@ recipients: openstack-qa@lists.openstack.org +- job: + name: periodic-tempest-devstack-vm-stress + node: devstack-precise + + wrappers: + - timeout: + timeout: 180 + fail: true + - timestamps + + triggers: + - timed: '0 6 * * *' + + parameters: + - string: + name: ZUUL_BRANCH + description: The branch to build + default: master + + builders: + - devstack-inprogress + - devstack-checkout + - shell: | + #!/bin/bash -xe + export PYTHONUNBUFFERED=true + export DEVSTACK_GATE_TEMPEST_STRESS=1 + cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh + ./safe-devstack-vm-gate-wrap.sh + - link-logs + + publishers: + - devstack-logs-periodic + - console-log-periodic + - devstack-complete + - email: + recipients: openstack-qa@lists.openstack.org + + - job: name: gate-tempest-devstack-vm-postgres-zeromq-full node: devstack-precise