Copy pipelines config from zuul/project-config
Change-Id: I578c8975fa2a78cd116a1014678031321152ce45
This commit is contained in:
parent
9860f9c965
commit
79f2ba5340
169
zuul.d/pipelines.yaml
Normal file
169
zuul.d/pipelines.yaml
Normal file
@ -0,0 +1,169 @@
|
||||
- pipeline:
|
||||
name: check
|
||||
description: |
|
||||
Newly uploaded patchsets enter this pipeline to receive an
|
||||
initial +/-1 Verified vote.
|
||||
success-message: Build succeeded (check pipeline).
|
||||
failure-message: |
|
||||
Build failed (check pipeline). For information on how to proceed, see
|
||||
http://docs.openstack.org/infra/manual/developers.html#automated-testing
|
||||
manager: independent
|
||||
precedence: normal
|
||||
require:
|
||||
gerrit:
|
||||
open: True
|
||||
current-patchset: True
|
||||
trigger:
|
||||
gerrit:
|
||||
- event: patchset-created
|
||||
- event: change-restored
|
||||
- event: comment-added
|
||||
comment: (?i)^(Patch Set [0-9]+:)?( [\w\\+-]*)*(\n\n)?\s*recheck
|
||||
success:
|
||||
gerrit:
|
||||
# Note that gerrit keywords are case-sensitive.
|
||||
Verified: 1
|
||||
failure:
|
||||
gerrit:
|
||||
Verified: -1
|
||||
|
||||
- pipeline:
|
||||
name: gate
|
||||
description: |
|
||||
Changes that have been approved by core reviewers are enqueued
|
||||
in order in this pipeline, and if they pass tests, will be
|
||||
merged. For documentation on how gating with Zuul works, please see
|
||||
https://zuul-ci.org/docs/zuul/latest/gating.html
|
||||
success-message: Build succeeded (gate pipeline).
|
||||
failure-message: |
|
||||
Build failed (gate pipeline). For information on how to proceed, see
|
||||
http://docs.openstack.org/infra/manual/developers.html#automated-testing
|
||||
manager: dependent
|
||||
precedence: high
|
||||
supercedes: check
|
||||
post-review: True
|
||||
require:
|
||||
gerrit:
|
||||
open: True
|
||||
current-patchset: True
|
||||
approval:
|
||||
- Workflow: 1
|
||||
trigger:
|
||||
gerrit:
|
||||
- event: comment-added
|
||||
approval:
|
||||
- Workflow: 1
|
||||
- event: comment-added
|
||||
comment: (?i)^(Patch Set [0-9]+:)?( [\w\\+-]*)*(\n\n)?\s*re(check|verify)
|
||||
start:
|
||||
gerrit:
|
||||
Verified: 0
|
||||
success:
|
||||
gerrit:
|
||||
Verified: 2
|
||||
submit: true
|
||||
failure:
|
||||
gerrit:
|
||||
Verified: -2
|
||||
window-floor: 20
|
||||
window-increase-factor: 2
|
||||
|
||||
- pipeline:
|
||||
name: post
|
||||
description: |
|
||||
This pipeline runs jobs that operate after each change is
|
||||
merged. Queue items are identified by the abbreviated hash (git
|
||||
log --format=%h) of the merge commit.
|
||||
manager: supercedent
|
||||
precedence: high
|
||||
post-review: True
|
||||
trigger:
|
||||
gerrit:
|
||||
- event: ref-updated
|
||||
ref: ^refs/heads/.*$
|
||||
|
||||
- pipeline:
|
||||
name: promote
|
||||
description: |
|
||||
This pipeline runs jobs that operate after each change is merged
|
||||
in order to promote artifacts generated in the gate
|
||||
pipeline.
|
||||
success-message: Build succeeded (promote pipeline).
|
||||
failure-message: |
|
||||
Build failed (promote pipeline). For information on how to proceed, see
|
||||
http://docs.openstack.org/infra/manual/developers.html#automated-testing
|
||||
manager: supercedent
|
||||
precedence: high
|
||||
post-review: True
|
||||
trigger:
|
||||
gerrit:
|
||||
- event: change-merged
|
||||
success:
|
||||
gerrit: {}
|
||||
failure:
|
||||
gerrit: {}
|
||||
|
||||
- pipeline:
|
||||
name: release
|
||||
description: |
|
||||
When a commit is tagged as a release, this pipeline runs jobs
|
||||
that publish archives and documentation.
|
||||
manager: independent
|
||||
precedence: high
|
||||
post-review: True
|
||||
trigger:
|
||||
gerrit:
|
||||
- event: ref-updated
|
||||
ref: ^refs/tags/[0-9]+(\.[0-9]+)*$
|
||||
|
||||
- pipeline:
|
||||
name: periodic
|
||||
post-review: true
|
||||
description: Jobs in this queue are triggered on a timer.
|
||||
manager: independent
|
||||
precedence: low
|
||||
trigger:
|
||||
timer:
|
||||
- time: '0 6 * * *'
|
||||
|
||||
- pipeline:
|
||||
name: periodic-weekly
|
||||
post-review: true
|
||||
description: Jobs in this queue are triggered on a weekly timer.
|
||||
manager: independent
|
||||
precedence: low
|
||||
trigger:
|
||||
timer:
|
||||
# Saturday 8am UTC is a better time to start weekend jobs, as Sunday
|
||||
# is a working day in some geographies.
|
||||
- time: '0 8 * * 6'
|
||||
|
||||
- pipeline:
|
||||
name: tag
|
||||
post-review: true
|
||||
description: This pipeline runs jobs in response to any tag event.
|
||||
manager: independent
|
||||
precedence: high
|
||||
trigger:
|
||||
gerrit:
|
||||
- event: ref-updated
|
||||
ref: ^refs/tags/.*$
|
||||
|
||||
- pipeline:
|
||||
name: experimental
|
||||
description: |
|
||||
On-demand pipeline for requesting a run against a set of jobs
|
||||
that are not yet gating. Leave review comment of "check
|
||||
experimental" to run jobs in this pipeline.
|
||||
success-message: Build succeeded (experimental pipeline).
|
||||
failure-message: Build failed (experimental pipeline).
|
||||
manager: independent
|
||||
precedence: low
|
||||
trigger:
|
||||
gerrit:
|
||||
- event: comment-added
|
||||
comment: (?i)^(Patch Set [0-9]+:)?( [\w\\+-]*)*(\n\n)?\s*check experimental\s*$
|
||||
success:
|
||||
gerrit: {}
|
||||
failure:
|
||||
gerrit: {}
|
7
zuul.d/projects.yaml
Normal file
7
zuul.d/projects.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
- project:
|
||||
check:
|
||||
jobs:
|
||||
- noop
|
||||
gate:
|
||||
jobs:
|
||||
- noop
|
Loading…
x
Reference in New Issue
Block a user