69fcefc20ce7eb79d4d7e4635bf6658d6cb7690d
[releng.git] / jjb / parser / parser.yml
1 ###################################################
2 # All the jobs except verify have been removed!
3 # They will only be enabled on request by projects!
4 ###################################################
5 - project:
6     name: parser
7
8     project: '{name}'
9
10     jobs:
11         - 'parser-verify-{stream}'
12
13     stream:
14         - master:
15             branch: '{stream}'
16             gs-pathname: ''
17             disabled: false
18         - danube:
19             branch: 'stable/{stream}'
20             gs-pathname: '/{stream}'
21             disabled: false
22
23 - job-template:
24     name: 'parser-verify-{stream}'
25
26     disabled: '{obj:disabled}'
27
28     parameters:
29         - project-parameter:
30             project: '{project}'
31             branch: '{branch}'
32         - 'opnfv-build-ubuntu-defaults'
33
34     scm:
35         - git-scm-gerrit
36
37     triggers:
38         - gerrit:
39             server-name: 'gerrit.opnfv.org'
40             trigger-on:
41                 - patchset-created-event:
42                     exclude-drafts: 'false'
43                     exclude-trivial-rebase: 'false'
44                     exclude-no-code-change: 'false'
45                 - draft-published-event
46                 - comment-added-contains-event:
47                     comment-contains-value: 'recheck'
48                 - comment-added-contains-event:
49                     comment-contains-value: 'reverify'
50             projects:
51               - project-compare-type: 'ANT'
52                 project-pattern: '{project}'
53                 branches:
54                   - branch-compare-type: 'ANT'
55                     branch-pattern: '**/{branch}'
56                 forbidden-file-paths:
57                   - compare-type: ANT
58                     pattern: 'docs/**|.gitignore'
59
60     builders:
61         - shell: |
62             #!/bin/bash
63             set -o errexit
64             set -o pipefail
65             set -o xtrace
66             export PATH=$PATH:/usr/local/bin/
67
68             # ut and pep8 check parser/tosca2heat
69             echo "Running tox on tosca2heat/tosca-parser ..."
70             cd $WORKSPACE/tosca2heat/tosca-parser && tox
71             echo "Running tox on tosca2heat/heat-translator ..."
72             cd $WORKSPACE/tosca2heat/heat-translator && tox