David Shrewsbury | f6dc176 | 2017-10-02 13:34:37 -0400 | [diff] [blame] | 1 | - pipeline: |
| 2 | name: check |
| 3 | manager: independent |
| 4 | trigger: |
| 5 | gerrit: |
| 6 | - event: patchset-created |
| 7 | success: |
| 8 | gerrit: |
| 9 | Verified: 1 |
| 10 | failure: |
| 11 | gerrit: |
| 12 | Verified: -1 |
| 13 | |
| 14 | - pipeline: |
| 15 | name: gate |
| 16 | manager: dependent |
| 17 | success-message: Build succeeded (gate). |
| 18 | trigger: |
| 19 | gerrit: |
| 20 | - event: comment-added |
| 21 | approval: |
| 22 | - Approved: 1 |
| 23 | success: |
| 24 | gerrit: |
| 25 | Verified: 2 |
| 26 | submit: true |
| 27 | failure: |
| 28 | gerrit: |
| 29 | Verified: -2 |
| 30 | start: |
| 31 | gerrit: |
| 32 | Verified: 0 |
| 33 | precedence: high |
| 34 | |
| 35 | - job: |
| 36 | name: base |
| 37 | parent: null |
James E. Blair | 2f589fe | 2017-10-26 12:57:41 -0700 | [diff] [blame] | 38 | run: playbooks/base.yaml |
David Shrewsbury | f6dc176 | 2017-10-02 13:34:37 -0400 | [diff] [blame] | 39 | |
| 40 | - job: |
| 41 | name: project-test1 |
| 42 | nodeset: |
| 43 | nodes: |
| 44 | - name: controller |
| 45 | label: label1 |
James E. Blair | 2f589fe | 2017-10-26 12:57:41 -0700 | [diff] [blame] | 46 | run: playbooks/project-test1.yaml |
David Shrewsbury | f6dc176 | 2017-10-02 13:34:37 -0400 | [diff] [blame] | 47 | |
| 48 | - job: |
| 49 | name: ignore-branch |
| 50 | branches: ^(?!featureA).*$ |
| 51 | nodeset: |
| 52 | nodes: |
| 53 | - name: controller |
| 54 | label: label2 |
James E. Blair | 2f589fe | 2017-10-26 12:57:41 -0700 | [diff] [blame] | 55 | run: playbooks/ignore-branch.yaml |
David Shrewsbury | f6dc176 | 2017-10-02 13:34:37 -0400 | [diff] [blame] | 56 | |
| 57 | - project: |
| 58 | name: org/project |
| 59 | check: |
| 60 | jobs: |
| 61 | - project-test1 |
| 62 | - ignore-branch |
| 63 | gate: |
| 64 | jobs: |
| 65 | - project-test1 |
| 66 | - ignore-branch |