summaryrefslogtreecommitdiff
path: root/jjb/yaml/openbook-all-pipeline.yaml
diff options
context:
space:
mode:
authorCarlos Konstanski <ckonstanski@pippiandcarlos.com>2017-10-10 17:54:32 -0600
committerCarlos Konstanski <ckonstanski@pippiandcarlos.com>2017-10-10 17:54:32 -0600
commitde6ec2efd6b9ca676b2babdbb5dc98ed8f7d9ef0 (patch)
tree84736d585933e08ae87ba87b8c731e92df5c230e /jjb/yaml/openbook-all-pipeline.yaml
parent9797586697647222eaa863b7656b7b434d1afc9d (diff)
many things
Diffstat (limited to 'jjb/yaml/openbook-all-pipeline.yaml')
-rw-r--r--jjb/yaml/openbook-all-pipeline.yaml72
1 files changed, 72 insertions, 0 deletions
diff --git a/jjb/yaml/openbook-all-pipeline.yaml b/jjb/yaml/openbook-all-pipeline.yaml
new file mode 100644
index 0000000..c5e3283
--- /dev/null
+++ b/jjb/yaml/openbook-all-pipeline.yaml
@@ -0,0 +1,72 @@
+---
+- job:
+ name: openbook-all-pipeline
+ project-type: pipeline
+ dsl: |
+ pipeline {
+ agent {
+ node {
+ label "master"
+ }
+ }
+ stages {
+ stage("checkout") {
+ agent {
+ node {
+ label "openbook_v4"
+ customWorkspace "workspace/openbook-all"
+ }
+ }
+ steps {
+ checkout([
+ scm: [
+ $class: "GitSCM",
+ branches: [
+ [name: "master"]
+ ],
+ userRemoteConfigs: [
+ [url: "git@github.com:Talligent/openbook-core.git"]
+ ],
+ poll: false,
+ changelog: false
+ ]
+ ])
+ }
+ }
+ stage("database") {
+ steps {
+ build(job: "openbook-database")
+ }
+ }
+ stage("admin-api-server") {
+ steps {
+ build(job: "admin-api-server-pipeline")
+ }
+ }
+ stage("customer-api-server") {
+ steps {
+ build(job: "customer-api-server-pipeline")
+ }
+ }
+ stage("admin-web-ui") {
+ steps {
+ build(job: "admin-web-ui-pipeline")
+ }
+ }
+ stage("customer-web-ui") {
+ steps {
+ build(job: "customer-web-ui-pipeline")
+ }
+ }
+ stage("job-scheduler-server") {
+ steps {
+ build(job: "job-scheduler-server-pipeline")
+ }
+ }
+ stage("workflow-server") {
+ steps {
+ build(job: "workflow-server-pipeline")
+ }
+ }
+ }
+ }