diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-11 10:54:26 +0100 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-11 10:33:41 +0000 |
commit | 4163f6bfb811c17dc22e68c7a2ef1ed30293feaf (patch) | |
tree | 0205ec1ccbf67c0abdd6890a33352046733d33e5 /jjb/copper/copper.yml | |
parent | a8f7054c6691852c58c0fd68961a4302c101e20c (diff) |
Cleanup jjb files
- Remove the jobs that do nothing such as merge and daily jobs
- Leave only verify jobs for all the projects as placeholders
- Introduce stable/brahmaputra branch and keep it disabled
Please note that the "real" jobs for bottlenecks, compass4nfv,
functest, and qtip are not deleted.
Change-Id: I80031f77a11c2bf5173fbb7be98294285e3cc2ef
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb/copper/copper.yml')
-rw-r--r-- | jjb/copper/copper.yml | 63 |
1 files changed, 56 insertions, 7 deletions
diff --git a/jjb/copper/copper.yml b/jjb/copper/copper.yml index 637e35981..654b6f02a 100644 --- a/jjb/copper/copper.yml +++ b/jjb/copper/copper.yml @@ -1,20 +1,69 @@ +################################################### +# All the jobs except verify have been removed! +# They will only be enabled on request by projects! +################################################### - project: name: copper + + project: '{name}' + jobs: - - 'copper-test' + - 'copper-verify-{stream}' - # stream: branch with - in place of / (eg. stable-helium) - # branch: branch (eg. stable/helium) +# only master branch is enabled at the moment to keep no of jobs sane stream: - master: branch: 'master' + gs-pathname: '' +# - stable-brahmaputra: +# branch: 'stable/brahmaputra' +# gs-pathname: '/brahmaputra' - project: 'copper' - somevar: 'foo' +- job_defaults: &copper_job_defaults + name: copper_job_defaults + + parameters: + - project-parameter: + project: '{project}' + - gerrit-parameter: + branch: '{stream}' - job-template: - name: copper-test + name: 'copper-verify-{stream}' + + <<: *copper_job_defaults + + parameters: + - 'opnfv-build-defaults' + + 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: 'ANT' + project-pattern: '{project}' + branches: + - branch-compare-type: 'ANT' + branch-pattern: '**/{stream}' + forbidden-file-paths: + - compare-type: ANT + pattern: 'docs/**|.gitignore' builders: - shell: | - echo "Hello world from copper" + echo "Nothing to verify!" |