summaryrefslogtreecommitdiffstats
path: root/jjb/ipv6/ipv6.yml
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/ipv6/ipv6.yml')
-rw-r--r--jjb/ipv6/ipv6.yml66
1 files changed, 66 insertions, 0 deletions
diff --git a/jjb/ipv6/ipv6.yml b/jjb/ipv6/ipv6.yml
new file mode 100644
index 000000000..0b5e6b2f2
--- /dev/null
+++ b/jjb/ipv6/ipv6.yml
@@ -0,0 +1,66 @@
+- project:
+ name: ipv6
+ jobs:
+ - 'ipv6-test'
+ - 'ipv6-daily-master'
+
+ # stream: branch with - in place of / (eg. stable-helium)
+ # branch: branch (eg. stable/helium)
+ stream:
+ - master:
+ branch: 'master'
+
+ project: 'ipv6'
+ somevar: 'foo'
+
+- job-template:
+ name: ipv6-test
+
+ project-type: freestyle
+
+ logrotate:
+ daysToKeep: 30
+ numToKeep: 10
+ artifactDaysToKeep: -1
+ artifactNumToKeep: -1
+
+ builders:
+ - shell: |
+ echo "Hello world from ipv6"
+
+- job-template:
+ name: 'ipv6-daily-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: '{build-days-to-keep}'
+ numToKeep: '{build-num-to-keep}'
+ artifactDaysToKeep: '{build-artifact-days-to-keep}'
+ artifactNumToKeep: '{build-artifact-num-to-keep}'
+
+ wrappers:
+ - ssh-agent-credentials:
+ user: '{ssh-credentials}'
+
+ triggers:
+ - timed: 'H H * * *'
+
+ prebuilders:
+ - test-macro
+
+ builders:
+ - shell: |
+ echo "Hello world from ipv6 {somevar} daily"
+ - test-macro
+
+ postbuilders:
+ - test-macro
+