bd882cdd7a
As clarkb suggested on #openstack-infra at 17:46 2015-10-22: "maybe we should s/branch-designator/job-suffix/g in all those files as job-suffix makes more sense considering how branch-designator has been used". The rename should make it easier for newcomers to understand these jobs. This renames branch-designator everywhere in jenkins/jobs/*. Change-Id: Icb11271b958d92957fb9907ff03c0b898d7b76fc
50 lines
808 B
YAML
50 lines
808 B
YAML
- job-template:
|
|
name: 'gate-{name}-lint'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 5
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- ansible-check-lint
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-dsvm-commit'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 90
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- ansible-check-commit
|
|
|
|
publishers:
|
|
- console-log
|
|
- devstack-logs
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-commit{job-suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 90
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- ansible-check-commit
|
|
|
|
publishers:
|
|
- console-log
|
|
- devstack-logs
|