e67a1b54af
Merge after we've switched to the cinder job. This job should be unused at this point. Change-Id: I140bb8e5f95abf276c1bc488062725cd50495056 Reviewed-on: https://review.openstack.org/12086 Approved: James E. Blair <corvus@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Reviewed-by: John Griffith <john.griffith@solidfire.com> Tested-by: Jenkins
383 lines
11 KiB
YAML
383 lines
11 KiB
YAML
- job:
|
|
name: gate-tempest-devstack-vm
|
|
project-type: freestyle
|
|
concurrent: true
|
|
node: devstack-precise
|
|
|
|
logrotate:
|
|
daysToKeep: 28
|
|
numToKeep: -1
|
|
artifactDaysToKeep: -1
|
|
artifactNumToKeep: -1
|
|
|
|
parameters:
|
|
- label:
|
|
name: NODE_LABEL
|
|
description: Label of node to use for this build
|
|
default: devstack-precise
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 90
|
|
fail: true
|
|
- timestamps
|
|
|
|
triggers:
|
|
- zuul
|
|
|
|
builders:
|
|
- trigger-builds:
|
|
- project: devstack-update-inprogress
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
#
|
|
# This job also gates devstack-gate, but in case a previous run fails,
|
|
# we need to always make sure that we're starting with the latest copy
|
|
# from master, before we start applying changes to it. If a previous run
|
|
# leaves a bad copy of the gate script, we may get stuck.
|
|
#
|
|
if [[ ! -e devstack-gate ]]; then
|
|
git clone https://review.openstack.org/p/openstack-ci/devstack-gate
|
|
else
|
|
cd devstack-gate
|
|
git remote update
|
|
git reset --hard
|
|
git clean -x -f
|
|
git checkout master
|
|
git reset --hard remotes/origin/master
|
|
git clean -x -f
|
|
cd ..
|
|
fi
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_CINDER=0
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- archive:
|
|
artifacts: logs/*
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
|
source: 'logs/*'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
|
copy-console: true
|
|
copy-after-failure: true
|
|
- trigger-parameterized-builds:
|
|
- project: devstack-update-complete
|
|
when: complete
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
|
|
|
|
- job:
|
|
name: gate-tempest-devstack-vm-cinder
|
|
project-type: freestyle
|
|
concurrent: true
|
|
node: devstack-precise
|
|
|
|
logrotate:
|
|
daysToKeep: 28
|
|
numToKeep: -1
|
|
artifactDaysToKeep: -1
|
|
artifactNumToKeep: -1
|
|
|
|
parameters:
|
|
- label:
|
|
name: NODE_LABEL
|
|
description: Label of node to use for this build
|
|
default: devstack-precise
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 90
|
|
fail: true
|
|
- timestamps
|
|
|
|
triggers:
|
|
- zuul
|
|
|
|
builders:
|
|
- trigger-builds:
|
|
- project: devstack-update-inprogress
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
#
|
|
# This job also gates devstack-gate, but in case a previous run fails,
|
|
# we need to always make sure that we're starting with the latest copy
|
|
# from master, before we start applying changes to it. If a previous run
|
|
# leaves a bad copy of the gate script, we may get stuck.
|
|
#
|
|
if [[ ! -e devstack-gate ]]; then
|
|
git clone https://review.openstack.org/p/openstack-ci/devstack-gate
|
|
else
|
|
cd devstack-gate
|
|
git remote update
|
|
git reset --hard
|
|
git clean -x -f
|
|
git checkout master
|
|
git reset --hard remotes/origin/master
|
|
git clean -x -f
|
|
cd ..
|
|
fi
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_CINDER=1
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- archive:
|
|
artifacts: logs/*
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
|
source: 'logs/*'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
- target: 'logs/$ZUUL_CHANGE/$ZUUL_PATCHSET/$ZUUL_PIPELINE/$JOB_NAME/$BUILD_NUMBER'
|
|
copy-console: true
|
|
copy-after-failure: true
|
|
- trigger-parameterized-builds:
|
|
- project: devstack-update-complete
|
|
when: complete
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
|
|
|
|
- job:
|
|
name: periodic-tempest-devstack-vm-stable-diablo
|
|
project-type: freestyle
|
|
concurrent: true
|
|
node: devstack-oneiric
|
|
|
|
logrotate:
|
|
daysToKeep: 28
|
|
numToKeep: -1
|
|
artifactDaysToKeep: -1
|
|
artifactNumToKeep: -1
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 90
|
|
fail: true
|
|
- timestamps
|
|
|
|
triggers:
|
|
- timed: '@daily'
|
|
|
|
builders:
|
|
- trigger-builds:
|
|
- project: devstack-update-inprogress
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
#
|
|
# This job also gates devstack-gate, but in case a previous run fails,
|
|
# we need to always make sure that we're starting with the latest copy
|
|
# from master, before we start applying changes to it. If a previous run
|
|
# leaves a bad copy of the gate script, we may get stuck.
|
|
#
|
|
if [[ ! -e devstack-gate ]]; then
|
|
git clone https://review.openstack.org/p/openstack-ci/devstack-gate
|
|
else
|
|
cd devstack-gate
|
|
git remote update
|
|
git reset --hard
|
|
git clean -x -f
|
|
git checkout master
|
|
git reset --hard remotes/origin/master
|
|
git clean -x -f
|
|
cd ..
|
|
fi
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export GERRIT_BRANCH=stable/diablo
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- archive:
|
|
artifacts: logs/*
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
|
source: 'logs/*'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
|
copy-console: true
|
|
copy-after-failure: true
|
|
- trigger-parameterized-builds:
|
|
- project: devstack-update-complete
|
|
when: complete
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
|
|
|
|
- job:
|
|
name: periodic-tempest-devstack-vm-stable-essex
|
|
project-type: freestyle
|
|
concurrent: true
|
|
node: devstack-precise
|
|
|
|
logrotate:
|
|
daysToKeep: 28
|
|
numToKeep: -1
|
|
artifactDaysToKeep: -1
|
|
artifactNumToKeep: -1
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 90
|
|
fail: true
|
|
- timestamps
|
|
|
|
triggers:
|
|
- timed: '@daily'
|
|
|
|
builders:
|
|
- trigger-builds:
|
|
- project: devstack-update-inprogress
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
#
|
|
# This job also gates devstack-gate, but in case a previous run fails,
|
|
# we need to always make sure that we're starting with the latest copy
|
|
# from master, before we start applying changes to it. If a previous run
|
|
# leaves a bad copy of the gate script, we may get stuck.
|
|
#
|
|
if [[ ! -e devstack-gate ]]; then
|
|
git clone https://review.openstack.org/p/openstack-ci/devstack-gate
|
|
else
|
|
cd devstack-gate
|
|
git remote update
|
|
git reset --hard
|
|
git clean -x -f
|
|
git checkout master
|
|
git reset --hard remotes/origin/master
|
|
git clean -x -f
|
|
cd ..
|
|
fi
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export GERRIT_BRANCH=stable/essex
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- archive:
|
|
artifacts: logs/*
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
|
source: 'logs/*'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
|
copy-console: true
|
|
copy-after-failure: true
|
|
- trigger-parameterized-builds:
|
|
- project: devstack-update-complete
|
|
when: complete
|
|
predefined-parameters:
|
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
|
|
|
|
|
# Called by devstack jobs to alert that they have started so that the
|
|
# jenkins slave they are running on can be disabled.
|
|
- job:
|
|
name: devstack-update-inprogress
|
|
project-type: freestyle
|
|
concurrent: false
|
|
node: master
|
|
|
|
logrotate:
|
|
daysToKeep: 28
|
|
numToKeep: 100
|
|
artifactDaysToKeep: -1
|
|
artifactNumToKeep: -1
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 10
|
|
fail: true
|
|
- timestamps
|
|
|
|
builders:
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
|
|
if [[ ! -e devstack-gate ]]; then
|
|
git clone https://review.openstack.org/p/openstack-ci/devstack-gate
|
|
else
|
|
cd devstack-gate
|
|
git remote update
|
|
git pull --ff-only origin
|
|
cd ..
|
|
fi
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
$WORKSPACE/devstack-gate/devstack-vm-inprogress.py $DEVSTACK_NODE_NAME
|
|
|
|
|
|
# Called by devstack jobs to alert that they have completed so that the
|
|
# jenkins slave may be deleted.
|
|
- job:
|
|
name: devstack-update-complete
|
|
project-type: freestyle
|
|
concurrent: false
|
|
node: master
|
|
|
|
logrotate:
|
|
daysToKeep: 28
|
|
numToKeep: 100
|
|
artifactDaysToKeep: -1
|
|
artifactNumToKeep: -1
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 10
|
|
fail: true
|
|
- timestamps
|
|
|
|
builders:
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
|
|
if [[ ! -e devstack-gate ]]; then
|
|
git clone https://review.openstack.org/p/openstack-ci/devstack-gate
|
|
else
|
|
cd devstack-gate
|
|
git remote update
|
|
git pull --ff-only origin
|
|
cd ..
|
|
fi
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
$WORKSPACE/devstack-gate/devstack-vm-delete.py $DEVSTACK_NODE_NAME
|