diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2016-04-13 20:18:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-04-13 20:18:32 +0000 |
commit | 04fea4722f67ea665cd1122736e3fb4152336138 (patch) | |
tree | 651106c8aa49576919495ad04d1ebf3728a189d3 /jjb/opnfv | |
parent | e3fbbff296e2ff11cd6e84ab0164fefd2708c93b (diff) | |
parent | 135a03ece1781852e026a4bb3fae1f8cebf61453 (diff) |
Merge "Add Python Linting Job"
Diffstat (limited to 'jjb/opnfv')
-rw-r--r-- | jjb/opnfv/opnfv-lint.yml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/jjb/opnfv/opnfv-lint.yml b/jjb/opnfv/opnfv-lint.yml new file mode 100644 index 000000000..aeea34e65 --- /dev/null +++ b/jjb/opnfv/opnfv-lint.yml @@ -0,0 +1,64 @@ +######################## +# Job configuration for opnfv-lint +######################## +- project: + + name: opnfv-lint + + project: opnfv-lint + + jobs: + - 'opnfv-lint-verify-{stream}' + + stream: + - master: + branch: '{stream}' + gs-pathname: '' + - brahmaputra: + branch: 'stable/{stream}' + gs-pathname: '/{stream}' + +######################## +# job templates +######################## + +- job-template: + name: 'opnfv-lint-verify-{stream}' + + parameters: + - project-parameter: + project: $GERRIT_PROJECT + - gerrit-parameter: + branch: '{branch}' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + refspec: '$GERRIT_REFSPEC' + choosing-strategy: 'gerrit' + + triggers: + - gerrit: + trigger-on: + - patchset-created-event: + exclude-drafts: 'false' + exclude-trivial-rebase: 'false' + exclude-no-code-change: 'false' + - draft-published-event + - comment-added-contains-event: + comment-contains-value: 'recheck' + - comment-added-contains-event: + comment-contains-value: 'reverify' + projects: + - project-compare-type: 'REG_EXP' + project-pattern: 'functest' + branches: + - branch-compare-type: 'ANT' + branch-pattern: '**/{branch}' + file-paths: + - compare-type: ANT + pattern: '**/*.py' + + builders: + - lint-python-code + - report-lint-result-to-gerrit |