diff options
Diffstat (limited to 'jjb/yaml/verizoncloudplatform.com/openbook-all-ob-pipeline.yaml')
| -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") + }} + }} + }} + }} |
