2013-07-01 15:34:25 +00:00
|
|
|
- job:
|
2013-06-13 13:10:56 +00:00
|
|
|
name: gate-horizon-python27-django14
|
2014-06-19 12:46:08 -07:00
|
|
|
node: 'bare-precise || bare-trusty'
|
2013-06-13 13:10:56 +00:00
|
|
|
|
|
|
|
wrappers:
|
2014-05-27 14:51:16 -07:00
|
|
|
- build-timeout:
|
2013-06-13 13:10:56 +00:00
|
|
|
timeout: 40
|
|
|
|
- timestamps
|
|
|
|
|
|
|
|
builders:
|
2014-03-21 12:00:06 -07:00
|
|
|
- revoke-sudo
|
2013-06-13 13:10:56 +00:00
|
|
|
- gerrit-git-prep
|
2014-11-26 10:08:46 -08:00
|
|
|
- shell: '/usr/local/jenkins/slave_scripts/run-tox.sh py27dj14'
|
2013-06-13 13:10:56 +00:00
|
|
|
- assert-no-extra-files
|
|
|
|
|
|
|
|
publishers:
|
2013-07-09 10:53:27 -07:00
|
|
|
- test-results
|
2013-06-13 13:10:56 +00:00
|
|
|
- console-log
|
2014-08-13 11:36:10 +02:00
|
|
|
|
|
|
|
- job:
|
|
|
|
name: gate-horizon-jshint
|
|
|
|
node: 'bare-precise || bare-trusty'
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- revoke-sudo
|
|
|
|
- gerrit-git-prep
|
|
|
|
- tox:
|
|
|
|
envlist: jshint
|
|
|
|
|
|
|
|
publishers:
|
|
|
|
- console-log
|
2014-08-18 16:01:51 +01:00
|
|
|
|
|
|
|
- job:
|
|
|
|
name: gate-horizon-dsvm-integration
|
|
|
|
node: 'devstack-precise || devstack-trusty'
|
|
|
|
|
|
|
|
wrappers:
|
|
|
|
- build-timeout:
|
|
|
|
timeout: 95
|
|
|
|
- timestamps
|
|
|
|
|
|
|
|
builders:
|
|
|
|
- link-logs
|
|
|
|
- net-info
|
|
|
|
- devstack-checkout
|
2014-10-24 10:32:17 +01:00
|
|
|
- firefox-install
|
2014-10-14 15:35:22 +01:00
|
|
|
- xvfb-install
|
2014-08-18 16:01:51 +01:00
|
|
|
- shell: |
|
|
|
|
#!/bin/bash -xe
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
|
|
export DEVSTACK_GATE_TIMEOUT=90
|
|
|
|
export DEVSTACK_GATE_TEMPEST=0
|
|
|
|
export DEVSTACK_GATE_EXERCISES=0
|
|
|
|
export DEVSTACK_GATE_INSTALL_TESTONLY=1
|
2015-02-26 12:01:01 +02:00
|
|
|
export DEVSTACK_GATE_NEUTRON=1
|
2014-08-18 16:01:51 +01:00
|
|
|
|
2014-10-09 11:12:42 +01:00
|
|
|
function post_test_hook {
|
2014-08-18 16:01:51 +01:00
|
|
|
cd /opt/stack/new/horizon
|
2014-10-10 11:25:25 +01:00
|
|
|
sudo -H -u stack tox -e py27integration
|
2014-10-09 11:12:42 +01:00
|
|
|
}
|
2014-08-18 16:01:51 +01:00
|
|
|
export -f post_test_hook
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
|
|
|
|
publishers:
|
|
|
|
- test-results
|
|
|
|
- devstack-logs
|
|
|
|
- console-log
|