diff options
| author | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-10-10 17:54:32 -0600 |
|---|---|---|
| committer | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-10-10 17:54:32 -0600 |
| commit | de6ec2efd6b9ca676b2babdbb5dc98ed8f7d9ef0 (patch) | |
| tree | 84736d585933e08ae87ba87b8c731e92df5c230e /jjb/yaml/openbook-core-pipeline.yaml | |
| parent | 9797586697647222eaa863b7656b7b434d1afc9d (diff) | |
many things
Diffstat (limited to 'jjb/yaml/openbook-core-pipeline.yaml')
| -rw-r--r-- | jjb/yaml/openbook-core-pipeline.yaml | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/jjb/yaml/openbook-core-pipeline.yaml b/jjb/yaml/openbook-core-pipeline.yaml new file mode 100644 index 0000000..7a06acf --- /dev/null +++ b/jjb/yaml/openbook-core-pipeline.yaml @@ -0,0 +1,60 @@ +--- +- job: + name: openbook-core-pipeline + project-type: pipeline + dsl: | + pipeline { + agent { + node { + label "master" + } + } + triggers { + pollSCM 'H/5 * * * *' + } + stages { + stage("checkout") { + agent { + node { + label "openbook_v4" + customWorkspace "workspace/openbook-core" + } + } + steps { + checkout([ + scm: [ + $class: "GitSCM", + branches: [ + [name: "master"] + ], + userRemoteConfigs: [ + [url: "git@github.com:Talligent/openbook-core.git"] + ], + poll: true, + changelog: false + ] + ]) + } + } + stage("admin-api-server") { + steps { + build(job: "admin-api-server-pipeline") + } + } + stage("customer-api-server") { + steps { + build(job: "customer-api-server-pipeline") + } + } + stage("job-scheduler-server") { + steps { + build(job: "job-scheduler-server-pipeline") + } + } + stage("workflow-server") { + steps { + build(job: "workflow-server-pipeline") + } + } + } + } |
