summaryrefslogtreecommitdiff
path: root/jjb/yaml/openbook-all-pipeline.yaml
diff options
context:
space:
mode:
authorCarlos Konstanski <ckonstanski@pippiandcarlos.com>2017-10-30 15:36:48 -0600
committerCarlos Konstanski <ckonstanski@pippiandcarlos.com>2017-10-30 15:36:48 -0600
commit135eb98b29c63ea46d056226e2fa0c3f1d74e44a (patch)
tree82bcf1f2f893aba75d4dfaa5de0d478d3a61c115 /jjb/yaml/openbook-all-pipeline.yaml
parente92ab898c1b2d75ba0907de3d83d70926b936c30 (diff)
IS-29 and IS-30
Diffstat (limited to 'jjb/yaml/openbook-all-pipeline.yaml')
-rw-r--r--jjb/yaml/openbook-all-pipeline.yaml70
1 files changed, 0 insertions, 70 deletions
diff --git a/jjb/yaml/openbook-all-pipeline.yaml b/jjb/yaml/openbook-all-pipeline.yaml
deleted file mode 100644
index ad0fdbe..0000000
--- a/jjb/yaml/openbook-all-pipeline.yaml
+++ /dev/null
@@ -1,70 +0,0 @@
----
-- project:
- name: "openbook-all-pipeline"
- branch:
- - "unstable"
- - "develop"
- - "stage"
- - "master"
- jobs:
- - "openbook-all-{branch}-pipeline"
-
-- job-template:
- name: "openbook-all-{branch}-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("database") {{
- steps {{
- build(job: "openbook-database")
- }}
- }}
- stage("admin-api-server") {{
- steps {{
- build(job: "admin-api-server-{branch}-pipeline")
- }}
- }}
- stage("customer-api-server") {{
- steps {{
- build(job: "customer-api-server-{branch}-pipeline")
- }}
- }}
- stage("admin-web-ui") {{
- steps {{
- build(job: "admin-web-ui-{branch}-pipeline")
- }}
- }}
- stage("customer-web-ui") {{
- steps {{
- build(job: "customer-web-ui-{branch}-pipeline")
- }}
- }}
- stage("job-scheduler-server") {{
- steps {{
- build(job: "job-scheduler-server-{branch}-pipeline")
- }}
- }}
- stage("workflow-server") {{
- steps {{
- build(job: "workflow-server-{branch}-pipeline")
- }}
- }}
- }}
- }}