
This uses a python script with modules for parts of the XML. The parameters for the projects are provided using YAML scripts. It also includes a Jenkins API module to directly inject jobs into Jenkins without requiring a restart/reload as well as a memory of which jobs have been pushed to Jenkins. It is currently configured to replace the original Jenkins Jobs in StackForge. What it won't yet do: 1. Delete jobs (although it isn't far off being able to) 2. check-* jobs (need to modify the trigger_gerrit module to support that) Documentation to follow Fixes bug #995599 Change-Id: I2a67ee2d9e8f43cbced56425ef7f80dc6a30a814
39 lines
859 B
YAML
39 lines
859 B
YAML
---
|
|
modules:
|
|
- properties
|
|
- scm
|
|
- assignednode
|
|
- trigger_gerrit
|
|
- builders
|
|
- publisher_none
|
|
|
|
main:
|
|
name: 'gate-ceilometer-merge'
|
|
site: 'stackforge'
|
|
project: 'ceilometer'
|
|
authenticatedBuild: 'true'
|
|
disabled: 'false'
|
|
|
|
trigger:
|
|
triggerOnPatchsetUploadedEvent: 'false'
|
|
triggerOnChangeMergedEvent: 'false'
|
|
triggerOnCommentAddedEvent: 'true'
|
|
triggerOnRefUpdatedEvent: 'false'
|
|
triggerApprovalCategory: 'APRV'
|
|
triggerApprovalValue: 1
|
|
failureMessage: 'This change was unable to be automatically merged with the current state of the repository. Please rebase your change and upload a new patchset.'
|
|
projects:
|
|
- projectCompareType: 'PLAIN'
|
|
projectPattern: 'stackforge/ceilometer'
|
|
branchCompareType: 'ANT'
|
|
branchPattern: '**'
|
|
|
|
builders:
|
|
- gerrit_git_prep
|
|
|
|
scm:
|
|
scm: 'false'
|
|
|
|
assignednode:
|
|
node: 'oneiric'
|