summaryrefslogtreecommitdiffstats
path: root/jjb/ipv6
diff options
context:
space:
mode:
authorAric Gardner <agardner@linuxfoundation.org>2015-03-06 15:20:57 -0500
committerAric Gardner <agardner@linuxfoundation.org>2015-03-06 15:20:57 -0500
commit0b92f7db5de7166314344a5b7669f9bad2562a54 (patch)
tree849741ff2044b28676123381fe03f4951221f330 /jjb/ipv6
parent722926d57ab37051ebc21ba78b971ef8e998e0d0 (diff)
Add merge and verify jobs for all projects that lack said jobs
Change-Id: Ib85d6e162d2ebb37d0df60738c16d678ebc5326e Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb/ipv6')
-rw-r--r--jjb/ipv6/ipv6.yml121
1 files changed, 120 insertions, 1 deletions
diff --git a/jjb/ipv6/ipv6.yml b/jjb/ipv6/ipv6.yml
index 0b5e6b2f2..d6f5027fe 100644
--- a/jjb/ipv6/ipv6.yml
+++ b/jjb/ipv6/ipv6.yml
@@ -3,6 +3,8 @@
jobs:
- 'ipv6-test'
- 'ipv6-daily-master'
+ - 'ipv6-merge'
+ - 'ipv6-verify'
# stream: branch with - in place of / (eg. stable-helium)
# branch: branch (eg. stable/helium)
@@ -46,6 +48,16 @@
artifactDaysToKeep: '{build-artifact-days-to-keep}'
artifactNumToKeep: '{build-artifact-num-to-keep}'
+ parameters:
+ - project-parameter:
+ project: '{project}'
+
+ scm:
+ - git-scm:
+ credentials-id: '{ssh-credentials}'
+ refspec: ''
+ branch: '{branch}'
+
wrappers:
- ssh-agent-credentials:
user: '{ssh-credentials}'
@@ -58,9 +70,116 @@
builders:
- shell: |
+ pwd
+ find .
echo "Hello world from ipv6 {somevar} daily"
- - test-macro
postbuilders:
- test-macro
+- job-template:
+ name: 'ipv6-verify'
+
+ project-type: freestyle
+
+ logrotate:
+ daysToKeep: 30
+ numToKeep: 10
+ artifactDaysToKeep: -1
+ artifactNumToKeep: -1
+
+ parameters:
+ - project-parameter:
+ project: '{project}'
+ - gerrit-parameter:
+ branch: 'master'
+ scm:
+ - gerrit-trigger-scm:
+ credentials-id: '{ssh-credentials}'
+ refspec: '$GERRIT_REFSPEC'
+ choosing-strategy: 'gerrit'
+
+ wrappers:
+ - ssh-agent-credentials:
+ user: '{ssh-credentials}'
+
+ 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: 'ipv6'
+ branches:
+ - branch-compare-type: 'ANT'
+ branch-pattern: '**/master'
+
+ builders:
+ - shell: |
+ pwd
+ find .
+ echo "verify logic goes here"
+
+- job-template:
+ name: 'ipv6-merge'
+
+ # 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: 'ipv6'
+ branches:
+ - branch-compare-type: 'ANT'
+ branch-pattern: '**/master'
+
+ builders:
+ - shell: |
+ pwd
+ find .
+ echo "merge logic goes here"
+
+
+
+
+
+