Add stable/folsom periodic bitrot jobs.
Now that stable/folsom has been released add periodic bitrot jobs for that stable release. Do this early to catch bitrot early. Change-Id: Ie83263209aed8b76a2d7fa0f5eda88f6e2e779f6 Reviewed-on: https://review.openstack.org/13768 Reviewed-by: James E. Blair <corvus@inaugust.com> Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
This commit is contained in:
parent
199d1f3b8f
commit
56a8b92ce9
@ -119,6 +119,7 @@
|
|||||||
#!/bin/bash -xe
|
#!/bin/bash -xe
|
||||||
export PYTHONUNBUFFERED=true
|
export PYTHONUNBUFFERED=true
|
||||||
export DEVSTACK_GATE_TEMPEST=1
|
export DEVSTACK_GATE_TEMPEST=1
|
||||||
|
export DEVSTACK_GATE_CINDER=0
|
||||||
export GERRIT_BRANCH=stable/diablo
|
export GERRIT_BRANCH=stable/diablo
|
||||||
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
||||||
./safe-devstack-vm-gate-wrap.sh
|
./safe-devstack-vm-gate-wrap.sh
|
||||||
@ -162,6 +163,7 @@
|
|||||||
#!/bin/bash -xe
|
#!/bin/bash -xe
|
||||||
export PYTHONUNBUFFERED=true
|
export PYTHONUNBUFFERED=true
|
||||||
export DEVSTACK_GATE_TEMPEST=1
|
export DEVSTACK_GATE_TEMPEST=1
|
||||||
|
export DEVSTACK_GATE_CINDER=0
|
||||||
export GERRIT_BRANCH=stable/essex
|
export GERRIT_BRANCH=stable/essex
|
||||||
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
||||||
./safe-devstack-vm-gate-wrap.sh
|
./safe-devstack-vm-gate-wrap.sh
|
||||||
@ -182,6 +184,132 @@
|
|||||||
DEVSTACK_NODE_NAME=${NODE_NAME}
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
||||||
|
|
||||||
|
|
||||||
|
- job:
|
||||||
|
name: periodic-tempest-devstack-vm-stable-folsom
|
||||||
|
node: devstack-precise
|
||||||
|
|
||||||
|
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 DEVSTACK_GATE_CINDER=0
|
||||||
|
export GERRIT_BRANCH=stable/folsom
|
||||||
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
||||||
|
./safe-devstack-vm-gate-wrap.sh
|
||||||
|
|
||||||
|
publishers:
|
||||||
|
- scp:
|
||||||
|
site: 'static.openstack.org'
|
||||||
|
files:
|
||||||
|
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
||||||
|
source: 'logs/*'
|
||||||
|
keep-hierarchy: true
|
||||||
|
copy-after-failure: true
|
||||||
|
- console-log-periodic
|
||||||
|
- trigger-parameterized-builds:
|
||||||
|
- project: devstack-update-complete
|
||||||
|
when: complete
|
||||||
|
predefined-parameters:
|
||||||
|
DEVSTACK_NODE_NAME=${NODE_NAME}
|
||||||
|
|
||||||
|
|
||||||
|
- job:
|
||||||
|
name: periodic-tempest-devstack-vm-cinder-stable-folsom
|
||||||
|
node: devstack-precise
|
||||||
|
|
||||||
|
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 DEVSTACK_GATE_CINDER=1
|
||||||
|
export GERRIT_BRANCH=stable/folsom
|
||||||
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
||||||
|
./safe-devstack-vm-gate-wrap.sh
|
||||||
|
|
||||||
|
publishers:
|
||||||
|
- scp:
|
||||||
|
site: 'static.openstack.org'
|
||||||
|
files:
|
||||||
|
- target: 'logs/periodic/$JOB_NAME/$BUILD_NUMBER'
|
||||||
|
source: 'logs/*'
|
||||||
|
keep-hierarchy: true
|
||||||
|
copy-after-failure: true
|
||||||
|
- console-log-periodic
|
||||||
|
- 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
|
# Called by devstack jobs to alert that they have started so that the
|
||||||
# jenkins slave they are running on can be disabled.
|
# jenkins slave they are running on can be disabled.
|
||||||
- job:
|
- job:
|
||||||
|
@ -115,6 +115,7 @@
|
|||||||
- python-jobs
|
- python-jobs
|
||||||
- python-diablo-bitrot-jobs
|
- python-diablo-bitrot-jobs
|
||||||
- python-essex-bitrot-jobs
|
- python-essex-bitrot-jobs
|
||||||
|
- python-folsom-bitrot-jobs
|
||||||
- openstack-publish-jobs
|
- openstack-publish-jobs
|
||||||
|
|
||||||
|
|
||||||
@ -138,6 +139,7 @@
|
|||||||
- python-jobs
|
- python-jobs
|
||||||
- python-diablo-bitrot-jobs
|
- python-diablo-bitrot-jobs
|
||||||
- python-essex-bitrot-jobs
|
- python-essex-bitrot-jobs
|
||||||
|
- python-folsom-bitrot-jobs
|
||||||
- openstack-publish-jobs
|
- openstack-publish-jobs
|
||||||
|
|
||||||
|
|
||||||
@ -185,6 +187,7 @@
|
|||||||
- python-jobs
|
- python-jobs
|
||||||
- python-diablo-bitrot-jobs
|
- python-diablo-bitrot-jobs
|
||||||
- python-essex-bitrot-jobs
|
- python-essex-bitrot-jobs
|
||||||
|
- python-folsom-bitrot-jobs
|
||||||
- openstack-publish-jobs
|
- openstack-publish-jobs
|
||||||
|
|
||||||
|
|
||||||
@ -252,6 +255,7 @@
|
|||||||
- python-jobs
|
- python-jobs
|
||||||
- python-diablo-bitrot-jobs
|
- python-diablo-bitrot-jobs
|
||||||
- python-essex-bitrot-jobs
|
- python-essex-bitrot-jobs
|
||||||
|
- python-folsom-bitrot-jobs
|
||||||
- openstack-publish-jobs
|
- openstack-publish-jobs
|
||||||
- gate-{name}-pylint
|
- gate-{name}-pylint
|
||||||
- translation-jobs
|
- translation-jobs
|
||||||
@ -512,6 +516,7 @@
|
|||||||
- python-jobs
|
- python-jobs
|
||||||
- python-diablo-bitrot-jobs
|
- python-diablo-bitrot-jobs
|
||||||
- python-essex-bitrot-jobs
|
- python-essex-bitrot-jobs
|
||||||
|
- python-folsom-bitrot-jobs
|
||||||
- openstack-publish-jobs
|
- openstack-publish-jobs
|
||||||
|
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
|
|
||||||
node: '{node}'
|
node: '{node}'
|
||||||
|
|
||||||
|
|
||||||
- job-group:
|
- job-group:
|
||||||
name: python-diablo-bitrot-jobs
|
name: python-diablo-bitrot-jobs
|
||||||
branch: 'stable/diablo'
|
branch: 'stable/diablo'
|
||||||
@ -96,3 +96,14 @@
|
|||||||
- 'periodic-{name}-python26-{branch-name}'
|
- 'periodic-{name}-python26-{branch-name}'
|
||||||
- 'periodic-{name}-python27-{branch-name}'
|
- 'periodic-{name}-python27-{branch-name}'
|
||||||
- 'periodic-{name}-docs-{branch-name}'
|
- 'periodic-{name}-docs-{branch-name}'
|
||||||
|
|
||||||
|
|
||||||
|
- job-group:
|
||||||
|
name: python-folsom-bitrot-jobs
|
||||||
|
branch: 'stable/folsom'
|
||||||
|
branch-name: 'stable-folsom'
|
||||||
|
node: precise
|
||||||
|
jobs:
|
||||||
|
- 'periodic-{name}-python26-{branch-name}'
|
||||||
|
- 'periodic-{name}-python27-{branch-name}'
|
||||||
|
- 'periodic-{name}-docs-{branch-name}'
|
||||||
|
Loading…
Reference in New Issue
Block a user