summaryrefslogtreecommitdiffstats
path: root/jjb/ipv6
diff options
context:
space:
mode:
authorAric Gardner <agardner@linuxfoundation.org>2015-02-18 15:57:35 -0500
committerAric Gardner <agardner@linuxfoundation.org>2015-02-18 15:57:35 -0500
commit2d371b271dd95913d46b1a2f179a71a69c548515 (patch)
tree99b56690197b9fcd980596b832762dd3624b9dba /jjb/ipv6
parent7f2bb72e372babadedadfae030e8825e135f6070 (diff)
Inital commit for jenkins job builder
Change-Id: I8c50158e55a6ddb46fd1f74dbc81e668402e089f Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb/ipv6')
-rw-r--r--jjb/ipv6/.availability.yml.swpbin0 -> 12288 bytes
-rw-r--r--jjb/ipv6/ipv6.cfg3
-rw-r--r--jjb/ipv6/ipv6.yml66
3 files changed, 69 insertions, 0 deletions
diff --git a/jjb/ipv6/.availability.yml.swp b/jjb/ipv6/.availability.yml.swp
new file mode 100644
index 000000000..7ca652091
--- /dev/null
+++ b/jjb/ipv6/.availability.yml.swp
Binary files differ
diff --git a/jjb/ipv6/ipv6.cfg b/jjb/ipv6/ipv6.cfg
new file mode 100644
index 000000000..27cff6f0f
--- /dev/null
+++ b/jjb/ipv6/ipv6.cfg
@@ -0,0 +1,3 @@
+DEPENDENCIES: none
+JOB_TEMPLATES: merge,daily
+BRANCHES: master
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
+