b5155d4199
this creates a non-voting bash8 test for devstack which does basic style checking of the devstack shell scripts. Requires https://review.openstack.org/#/c/51711/ to land first for this to work. Change-Id: Ib6ae29cf4058263aedd3d9c0a1e15de27eea729b
61 lines
1007 B
YAML
61 lines
1007 B
YAML
- job:
|
|
name: gate-noop
|
|
node: precise
|
|
|
|
- job:
|
|
name: gate-grenade-noop
|
|
node: precise
|
|
|
|
- job:
|
|
name: node-test
|
|
|
|
parameters:
|
|
- label:
|
|
name: NODE
|
|
description: Node to test
|
|
|
|
builders:
|
|
- shell: 'echo ok'
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-run-tests'
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- run-tests:
|
|
github-org: '{github-org}'
|
|
project: '{name}'
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
node: '{node}'
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-bash8'
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- bash8:
|
|
github-org: '{github-org}'
|
|
project: '{name}'
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
node: '{node}'
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-unittests-{env}'
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: '/usr/local/jenkins/slave_scripts/run-unittests.sh {env} {github-org} {name}'
|
|
- assert-no-extra-files
|
|
|
|
publishers:
|
|
- test-results
|
|
- console-log
|
|
|
|
node: '{node}'
|