From 2d371b271dd95913d46b1a2f179a71a69c548515 Mon Sep 17 00:00:00 2001 From: Aric Gardner Date: Wed, 18 Feb 2015 15:57:35 -0500 Subject: Inital commit for jenkins job builder Change-Id: I8c50158e55a6ddb46fd1f74dbc81e668402e089f Signed-off-by: Aric Gardner --- jjb/ipv6/.availability.yml.swp | Bin 0 -> 12288 bytes jjb/ipv6/ipv6.cfg | 3 ++ jjb/ipv6/ipv6.yml | 66 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 jjb/ipv6/.availability.yml.swp create mode 100644 jjb/ipv6/ipv6.cfg create mode 100644 jjb/ipv6/ipv6.yml (limited to 'jjb/ipv6') diff --git a/jjb/ipv6/.availability.yml.swp b/jjb/ipv6/.availability.yml.swp new file mode 100644 index 000000000..7ca652091 Binary files /dev/null and b/jjb/ipv6/.availability.yml.swp 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 + -- cgit 1.2.3-korg