James E. Blair | b09a0c5 | 2017-10-04 07:35:14 -0700 | [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 | - job: |
| 15 | name: base |
| 16 | parent: null |
| 17 | pre-run: base-pre |
| 18 | post-run: base-post |
| 19 | nodeset: |
| 20 | nodes: |
| 21 | - name: controller |
| 22 | label: base |
James E. Blair | 2f589fe | 2017-10-26 12:57:41 -0700 | [diff] [blame] | 23 | run: playbooks/base.yaml |
James E. Blair | b09a0c5 | 2017-10-04 07:35:14 -0700 | [diff] [blame] | 24 | |
| 25 | - job: |
| 26 | name: python27 |
| 27 | parent: base |
| 28 | timeout: 40 |
| 29 | pre-run: py27-pre |
| 30 | post-run: |
| 31 | - py27-post-a |
| 32 | - py27-post-b |
| 33 | nodeset: |
| 34 | nodes: |
| 35 | - name: controller |
| 36 | label: new |
James E. Blair | 2f589fe | 2017-10-26 12:57:41 -0700 | [diff] [blame] | 37 | run: playbooks/python27.yaml |
James E. Blair | b09a0c5 | 2017-10-04 07:35:14 -0700 | [diff] [blame] | 38 | |
| 39 | - job: |
| 40 | name: python27 |
| 41 | timeout: 50 |
| 42 | branches: |
| 43 | - stable/diablo |
| 44 | pre-run: py27-diablo-pre |
| 45 | run: py27-diablo |
| 46 | post-run: py27-diablo-post |
| 47 | nodeset: |
| 48 | nodes: |
| 49 | - name: controller |
| 50 | label: old |
| 51 | |
| 52 | - job: |
| 53 | name: python27 |
| 54 | branches: |
| 55 | - stable/essex |
| 56 | pre-run: py27-essex-pre |
| 57 | post-run: py27-essex-post |
James E. Blair | 2f589fe | 2017-10-26 12:57:41 -0700 | [diff] [blame] | 58 | run: playbooks/python27.yaml |
James E. Blair | b09a0c5 | 2017-10-04 07:35:14 -0700 | [diff] [blame] | 59 | |
| 60 | - project: |
| 61 | name: org/project |
| 62 | check: |
| 63 | jobs: |
| 64 | - python27 |