summaryrefslogtreecommitdiff
path: root/jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml
diff options
context:
space:
mode:
authorCarlos Konstanski <ckonstanski@pippiandcarlos.com>2017-11-28 14:17:35 -0700
committerCarlos Konstanski <ckonstanski@pippiandcarlos.com>2017-11-28 14:17:35 -0700
commitee05c6885f8688c101a186690f716250d7aca657 (patch)
treecf29d6237ff6455471c1804ed14d45fadf2f7cf0 /jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml
parent184f021a36226f3b0c8dc7f85e440692808f02f8 (diff)
syncing up with vzw
Diffstat (limited to 'jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml')
-rw-r--r--jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml75
1 files changed, 75 insertions, 0 deletions
diff --git a/jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml b/jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml
new file mode 100644
index 0000000..f81f8ab
--- /dev/null
+++ b/jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml
@@ -0,0 +1,75 @@
+---
+- project:
+ name: "openbook-all-ob-pipeline"
+ branch:
+ - "unstable"
+ - "develop"
+ - "stage"
+ - "master"
+ jobs:
+ - "openbook-all-{branch}-ob-pipeline"
+
+- job-template:
+ name: "openbook-all-{branch}-ob-pipeline"
+ project-type: pipeline
+ dsl: |
+ pipeline {{
+ agent {{
+ node {{
+ label "master"
+ }}
+ }}
+ stages {{
+ stage("checkout") {{
+ agent {{
+ node {{
+ label "openbook_v4"
+ customWorkspace "workspace/openbook-core"
+ }}
+ }}
+ steps {{
+ git(poll: false, branch: "{branch}", url: "git@github.com:Talligent/openbook-core.git")
+ }}
+ }}
+ stage("baseimage") {{
+ steps {{
+ build(job: "openbook-baseimage")
+ }}
+ }}
+ stage("database") {{
+ steps {{
+ build(job: "openbook-database")
+ }}
+ }}
+ stage("admin-api-server") {{
+ steps {{
+ build(job: "admin-api-server-{branch}-ob-pipeline")
+ }}
+ }}
+ stage("customer-api-server") {{
+ steps {{
+ build(job: "customer-api-server-{branch}-ob-pipeline")
+ }}
+ }}
+ stage("admin-web-ui") {{
+ steps {{
+ build(job: "admin-web-ui-{branch}-ob-pipeline")
+ }}
+ }}
+ stage("customer-web-ui") {{
+ steps {{
+ build(job: "customer-web-ui-{branch}-ob-pipeline")
+ }}
+ }}
+ stage("job-scheduler-server") {{
+ steps {{
+ build(job: "job-scheduler-server-{branch}-ob-pipeline")
+ }}
+ }}
+ stage("workflow-server") {{
+ steps {{
+ build(job: "workflow-server-{branch}-ob-pipeline")
+ }}
+ }}
+ }}
+ }}