
- CI devstack configuration files - zuul configuration files - nodepool configuration files - Jenkins jobs - scripts for Jenkins jobs Change-Id: I3b1318af2e4009c201d6582c9bf9fea0328cff0d
42 lines
750 B
YAML
42 lines
750 B
YAML
- 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}'
|