diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2015-10-15 19:51:29 +0800 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-11-24 07:33:58 +0000 |
commit | 46e9c97c29d71e95e878d0dbd7e85dc3ce1b4bb1 (patch) | |
tree | d431d32ba719d752eaddc24fd6c705e72daa8ded /jjb/bottlenecks/bottlenecks.yml | |
parent | 18fcd109a202959e7cb80abfe3c1a96ae2c4ee7c (diff) |
add the daily/merge jobs and remove docu-build scripts to use SPHINX
JIRA: BOTTLENECK-1
to use the SPHINX, the build script is in releng/utils/docu-build-new.sh, should move all docs to /$project/docs directory
Change-Id: I5f1b538261017734570c9b21954555cb551af060
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'jjb/bottlenecks/bottlenecks.yml')
-rw-r--r-- | jjb/bottlenecks/bottlenecks.yml | 112 |
1 files changed, 104 insertions, 8 deletions
diff --git a/jjb/bottlenecks/bottlenecks.yml b/jjb/bottlenecks/bottlenecks.yml index 0baf7ba31..c55d6cc4c 100644 --- a/jjb/bottlenecks/bottlenecks.yml +++ b/jjb/bottlenecks/bottlenecks.yml @@ -6,6 +6,8 @@ jobs: - 'bottlenecks-test' - 'bottlenecks-verify' + - 'bottlenecks-daily-{stream}' + - 'bottlenecks-merge' # stream: branch with - in place of / (eg. stable-arno) # branch: branch (eg. stable/arno) @@ -15,11 +17,9 @@ project: 'bottlenecks' somevar: 'foo' - -######################## -# job templates -######################## - +############################### +# Job templates +############################## - job-template: name: 'bottlenecks-test' @@ -35,6 +35,52 @@ - shell: | echo "Hello world from bottlenecks" +- job-template: + name: 'bottlenecks-daily-{stream}' + + node: master + + # Job template for daily builders + # + # Required Variables: + # stream: branch with - in place of / (eg. stable) + # branch: branch (eg. stable) + + project-type: freestyle + varsetabove: '{somevar}' + + logrotate: + daysToKeep: 30 + numToKeep: 10 + artifactDaysToKeep: -1 + artifactNumToKeep: -1 + + parameters: + - project-parameter: + project: '{project}' + + scm: + - git-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + branch: '{branch}' + + wrappers: + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - timed: 'H H * * *' + + prebuilders: + - test-macro + + builders: + - shell: | + echo "hello world" + + postbuilders: + - test-macro - job-template: name: 'bottlenecks-verify' @@ -54,7 +100,6 @@ project: '{project}' - gerrit-parameter: branch: 'master' - scm: - gerrit-trigger-scm: credentials-id: '{ssh-credentials}' @@ -85,5 +130,56 @@ branch-pattern: '**/master' builders: - - shell: - !include-raw docu-build.sh + - shell: | + echo "hello world" + +- job-template: + name: 'bottlenecks-merge' + + node: master + + # builder-merge job to run JJB update + # + # This job's purpose is to update all the JJB + + project-type: freestyle + + logrotate: + daysToKeep: 30 + numToKeep: 40 + artifactDaysToKeep: -1 + artifactNumToKeep: 5 + + parameters: + - project-parameter: + project: '{project}' + - gerrit-parameter: + branch: 'master' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + choosing-strategy: 'default' + + wrappers: + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - gerrit: + trigger-on: + - change-merged-event + - comment-added-contains-event: + comment-contains-value: 'remerge' + projects: + - project-compare-type: 'ANT' + project-pattern: 'bottlenecks' + branches: + - branch-compare-type: 'ANT' + branch-pattern: '**/master' + + builders: + - shell: | + echo "hello world" + |