
The builders are run sequentially and short circuited. So if a job fails we used to loose the link to the logs, but a failed job is the main reason why someone would try to access the jenkins console log directly. Confirmed this patch hits all cases of link-logs using 'git grep -B1 link-logs' Change-Id: I74bc87b706c13624a1b34d0a0335c3a167ff8e34
57 lines
2.0 KiB
YAML
57 lines
2.0 KiB
YAML
- job:
|
|
name: gate-manila-tempest-dsvm-neutron
|
|
node: devstack-precise
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 65
|
|
fail: true
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TIMEOUT=60
|
|
export ENABLED_SERVICES=manila,m-api,m-shr,m-sch,tempest
|
|
export PROJECTS="stackforge/manila $PROJECTS"
|
|
export PROJECTS="stackforge/python-manilaclient $PROJECTS"
|
|
export DEVSTACK_GATE_TEMPEST_ALLOW_TENANT_ISOLATION=1
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
export TEMPEST_CONCURRENCY=2
|
|
export KEEP_LOCALRC=1
|
|
export MANILA_TESTS='tempest.cli.*manila*'
|
|
if [[ ! "$ZUUL_PROJECT" =~ python-manilaclient ]]; then
|
|
MANILA_TESTS+=' tempest.api.share*';
|
|
fi
|
|
echo "API_RATE_LIMIT=False" >> localrc
|
|
echo "SHARE_BACKING_FILE_SIZE=30G" >> localrc
|
|
echo "VOLUME_BACKING_FILE_SIZE=30G" >> localrc
|
|
|
|
function pre_test_hook {
|
|
# Install manila devstack integration
|
|
cp -r $BASE/new/manila/contrib/devstack/* $BASE/new/devstack
|
|
# Install manila tempest integration
|
|
cp -r $BASE/new/manila/contrib/tempest/tempest/* $BASE/new/tempest/tempest
|
|
}
|
|
export -f pre_test_hook
|
|
|
|
function post_test_hook {
|
|
# let us control if we die or not
|
|
set +o errexit
|
|
cd $BASE/new/tempest
|
|
sudo chown -R tempest:stack $BASE/new/tempest
|
|
echo "Running tempest manila test suites"
|
|
sudo -H -u tempest tox -evenv bash tools/pretty_tox.sh \"$MANILA_TESTS -- --concurrency=$TEMPEST_CONCURRENCY\"
|
|
}
|
|
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:
|
|
- devstack-logs
|
|
- console-log
|