
Any grizzly-specific jobs and filters which prevent jobs from being run on stable/grizzly branches are removed, but this should not be merged until all stable/grizzly proposed changes have been abandoned and corresponding branches tagged and deleted. Change-Id: I39f93f67b96961cd9991b6a13fecddb16e3a20fa
56 lines
967 B
YAML
56 lines
967 B
YAML
- job:
|
|
name: node-test
|
|
|
|
parameters:
|
|
- label:
|
|
name: NODE
|
|
description: Node to test
|
|
|
|
builders:
|
|
- shell: 'echo ok'
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-run-tests'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- run-tests:
|
|
github-org: '{github-org}'
|
|
project: '{name}'
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
node: '{node}'
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-bash8'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- gerrit-git-prep
|
|
- bash8:
|
|
github-org: '{github-org}'
|
|
project: '{name}'
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
node: '{node}'
|
|
|
|
- job-template:
|
|
name: 'gate-{name}-unittests-{env}'
|
|
|
|
builders:
|
|
- revoke-sudo
|
|
- 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}'
|