diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-06-18 07:55:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-06-18 07:55:19 +0000 |
commit | 31dffd75d042c3f83999c288ba4ebbe9eb4d3e90 (patch) | |
tree | e4c8512dcb6cd3625b2f2bd2fd7c315d1ee34e58 /jjb/octopus/octopus.yml | |
parent | b6fc8658c2333c6e4c3f16a7acbc5b9766940df0 (diff) | |
parent | d97fb164a5ad276a45319b12be6b7545676d4e78 (diff) |
Merge "Create daily jenkins jobs for octopus for stable/arno"
Diffstat (limited to 'jjb/octopus/octopus.yml')
-rw-r--r-- | jjb/octopus/octopus.yml | 42 |
1 files changed, 35 insertions, 7 deletions
diff --git a/jjb/octopus/octopus.yml b/jjb/octopus/octopus.yml index fe1713c73..e44e5ea93 100644 --- a/jjb/octopus/octopus.yml +++ b/jjb/octopus/octopus.yml @@ -5,7 +5,7 @@ name: octopus jobs: - 'octopus-test' - - 'octopus-daily-master' + - 'octopus-daily-{stream}' - 'octopus-merge' - 'octopus-verify-{stream}' @@ -14,8 +14,10 @@ stream: - master: branch: 'master' + gs-pathname: '' - stable-arno: branch: 'stable/arno' + gs-pathname: '/arno' project: 'octopus' somevar: 'foo' @@ -39,7 +41,7 @@ echo "Hello world from octopus" - job-template: - name: 'octopus-daily-master' + name: 'octopus-daily-{stream}' node: master @@ -61,26 +63,28 @@ parameters: - project-parameter: project: '{project}' + - octopus-parameter: + gs-pathname: '{gs-pathname}' scm: - git-scm: credentials-id: '{ssh-credentials}' refspec: '' - branch: master + branch: '{branch}' wrappers: - ssh-agent-credentials: user: '{ssh-credentials}' triggers: - - timed: 'H H * * *' + - 'octopus-{stream}' prebuilders: - test-macro builders: - shell: - !include-raw docu-build.sh + !include-raw ../opnfvdocs/docu-build.sh postbuilders: - test-macro @@ -134,7 +138,7 @@ builders: - shell: - !include-raw docu-build.sh + !include-raw ../opnfvdocs/docu-build.sh - job-template: name: 'octopus-merge' @@ -184,5 +188,29 @@ builders: - shell: - !include-raw docu-build.sh + !include-raw ../opnfvdocs/docu-build.sh + + +######################## +## parameter macros +######################### +- parameter: + name: octopus-parameter + parameters: + - string: + name: GS_PATHNAME + default: '{gs-pathname}' + description: "Version directory where the octopus will be stored in gs repository" + +######################### +## trigger macros +######################### +- trigger: + name: 'octopus-master' + triggers: + - pollscm: "H 7 * * *" +- trigger: + name: 'octopus-stable-arno' + triggers: + - pollscm: "H 19 * * *" |