diff options
| author | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2018-03-12 10:35:12 -0600 |
|---|---|---|
| committer | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2018-03-12 10:35:12 -0600 |
| commit | 0e2faf26ab978f33c4eb3156d101f4d14198c2fb (patch) | |
| tree | c8f854e4847a2465e49d0927b82e8d853191b25a /jjb/yaml/verizoncloudplatform.com | |
| parent | 82a4e72b03b61fcde7244ba199d834cea9849138 (diff) | |
Make "build all" job minus baseimage and database
Issue: IS-72
Diffstat (limited to 'jjb/yaml/verizoncloudplatform.com')
| -rw-r--r-- | jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml | 65 |
1 files changed, 65 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 index f81f8ab..44c8fbe 100644 --- a/jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml +++ b/jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml @@ -9,6 +9,16 @@ jobs: - "openbook-all-{branch}-ob-pipeline" +- project: + name: "openbook-app-all-ob-pipeline" + branch: + - "unstable" + - "develop" + - "stage" + - "master" + jobs: + - "openbook-app-all-{branch}-ob-pipeline" + - job-template: name: "openbook-all-{branch}-ob-pipeline" project-type: pipeline @@ -73,3 +83,58 @@ }} }} }} + +- job-template: + name: "openbook-app-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("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") + }} + }} + }} + }} |
