From 16a0b982a13d4ec0cc937f635519dabcf9c4157c Mon Sep 17 00:00:00 2001 From: Carlos Konstanski Date: Mon, 9 Oct 2017 17:22:41 -0600 Subject: turned off changelogs in scm. Infinite feedback loop! --- jjb/yaml/openbook-all.yaml | 67 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 jjb/yaml/openbook-all.yaml (limited to 'jjb/yaml/openbook-all.yaml') diff --git a/jjb/yaml/openbook-all.yaml b/jjb/yaml/openbook-all.yaml new file mode 100644 index 0000000..f624055 --- /dev/null +++ b/jjb/yaml/openbook-all.yaml @@ -0,0 +1,67 @@ +--- +- 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: true, + changelog: true + ] + ]) + } + } + 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") + } + } + } + } -- cgit v1.3