0af15e8d9d
A few projects used excess '' for node declarations, remove them. We had 17 'ubuntu-trusty' and 285 ubuntu-trusty, and 25 'ubuntu-xenial' and 744 ubuntu-xenial. This changes all node names for consistency, thus making search easier. Change-Id: I0cf565d1e31ea246f3b9d93bbd8de9980df4c684
75 lines
1.6 KiB
YAML
75 lines
1.6 KiB
YAML
- job-template:
|
|
name: '{pipeline}-kolla-dsvm-{action}-{distro}-{type}-{node}{suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 90
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- zuul-git-prep-upper-constraints
|
|
- install-distro-packages
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
|
|
export ACTION={action}
|
|
export BASE_DISTRO={distro}
|
|
export INSTALL_TYPE={type}
|
|
|
|
tools/gate_run.sh
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: 'kolla-dsvm-build-{distro}-{type}-{node}{suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 90
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- zuul-git-prep-upper-constraints
|
|
- install-distro-packages
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export ACTION=build
|
|
export BASE_DISTRO={distro}
|
|
export INSTALL_TYPE={type}
|
|
export PACK_REGISTRY=1
|
|
|
|
tools/gate_run.sh
|
|
|
|
publishers:
|
|
- devstack-logs
|
|
- scp:
|
|
site: 'tarballs.openstack.org'
|
|
files:
|
|
- source: 'images/*.tar.gz'
|
|
target: 'tarballs/kolla/images/'
|
|
- console-log
|
|
|
|
- job-group:
|
|
name: 'kolla-publish-image-jobs'
|
|
suffix: ''
|
|
type:
|
|
- binary
|
|
- source
|
|
jobs:
|
|
- 'kolla-dsvm-build-{distro}-{type}-{node}{suffix}':
|
|
distro: ubuntu
|
|
node: ubuntu-xenial
|
|
- 'kolla-dsvm-build-{distro}-{type}-{node}{suffix}':
|
|
distro:
|
|
- centos
|
|
- oraclelinux
|
|
node: centos-7
|