6e2075d5fe
Part of the transition to Xenial. For changes to branches >= newton run these jobs on Xenial. Changes to older branches continue to run on Trusty. Change-Id: I678132cc05156ff3795a5694a54044e72d236221
121 lines
3.0 KiB
YAML
121 lines
3.0 KiB
YAML
- job-template:
|
|
name: 'gate-bifrost-integration-tinyipa-{node}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 60
|
|
|
|
builders:
|
|
- install-distro-packages
|
|
# Job only needs MySQL
|
|
- mysql-prep
|
|
- mysql-db:
|
|
db_name: openstack_citest
|
|
- link-logs
|
|
- net-info
|
|
- shell: |
|
|
#!/bin/bash -eux
|
|
cd $WORKSPACE
|
|
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
|
|
git://git.openstack.org \
|
|
openstack/bifrost \
|
|
openstack/ironic \
|
|
openstack/python-ironicclient \
|
|
openstack-infra/shade \
|
|
openstack/ironic-inspector \
|
|
openstack/python-ironic-inspector-client
|
|
export GIT_BASE=$(pwd)
|
|
cd openstack/bifrost
|
|
scripts/test-bifrost.sh
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: 'gate-bifrost-integration-dibipa-debian-{node}-nv'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 120
|
|
|
|
builders:
|
|
- install-distro-packages
|
|
# Job only needs MySQL
|
|
- mysql-prep
|
|
- mysql-db:
|
|
db_name: openstack_citest
|
|
- link-logs
|
|
- net-info
|
|
- shell: |
|
|
#!/bin/bash -eux
|
|
cd $WORKSPACE
|
|
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
|
|
git://git.openstack.org \
|
|
openstack/bifrost \
|
|
openstack/diskimage-builder \
|
|
openstack/ironic \
|
|
openstack/python-ironicclient \
|
|
openstack-infra/shade \
|
|
openstack/ironic-inspector \
|
|
openstack/python-ironic-inspector-client
|
|
export GIT_BASE=$(pwd)
|
|
cd openstack/bifrost
|
|
scripts/test-bifrost-build-images.sh
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: 'gate-bifrost-integration-dhcp-{node}-nv'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 120
|
|
|
|
builders:
|
|
- install-distro-packages
|
|
# Job only needs MySQL
|
|
- mysql-prep
|
|
- mysql-db:
|
|
db_name: openstack_citest
|
|
- link-logs
|
|
- net-info
|
|
- shell: |
|
|
#!/bin/bash -eux
|
|
cd $WORKSPACE
|
|
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git \
|
|
git://git.openstack.org \
|
|
openstack/bifrost \
|
|
openstack/diskimage-builder \
|
|
openstack/ironic \
|
|
openstack/python-ironicclient \
|
|
openstack-infra/shade \
|
|
openstack/ironic-inspector \
|
|
openstack/python-ironic-inspector-client
|
|
export GIT_BASE=$(pwd)
|
|
cd openstack/bifrost
|
|
scripts/test-bifrost-inventory-dhcp.sh
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
|
|
- job-group:
|
|
name: bifrost-integration-jobs
|
|
node:
|
|
- ubuntu-trusty
|
|
- ubuntu-xenial
|
|
jobs:
|
|
- gate-bifrost-integration-tinyipa-{node}
|
|
- gate-bifrost-integration-dibipa-debian-{node}-nv
|
|
- gate-bifrost-integration-dhcp-{node}-nv
|