diff options
| author | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-10-09 17:22:41 -0600 |
|---|---|---|
| committer | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-10-09 17:22:41 -0600 |
| commit | 16a0b982a13d4ec0cc937f635519dabcf9c4157c (patch) | |
| tree | 2789aa49f10e05e4cd4d5ea10ead4cda541b88b4 /jjb/yaml | |
| parent | 833629ad0be16b55844781ada1065b68c809bb51 (diff) | |
turned off changelogs in scm. Infinite feedback loop!
Diffstat (limited to 'jjb/yaml')
| -rw-r--r-- | jjb/yaml/deploy-dev-env.yaml | 1 | ||||
| -rw-r--r-- | jjb/yaml/openbook-all.yaml | 67 | ||||
| -rw-r--r-- | jjb/yaml/openbook-core.yaml | 2 | ||||
| -rw-r--r-- | jjb/yaml/openbook-pipeline.yaml | 2 |
4 files changed, 70 insertions, 2 deletions
diff --git a/jjb/yaml/deploy-dev-env.yaml b/jjb/yaml/deploy-dev-env.yaml index b9828e0..ed631ea 100644 --- a/jjb/yaml/deploy-dev-env.yaml +++ b/jjb/yaml/deploy-dev-env.yaml @@ -18,6 +18,7 @@ - "job-scheduler-server-pipeline" - "workflow-server-pipeline" - "openbook-core-pipeline" + - "openbook-all-pipeline" scm: - git: url: git@github.com:Talligent/openbook-v4-installer.git 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") + } + } + } + } diff --git a/jjb/yaml/openbook-core.yaml b/jjb/yaml/openbook-core.yaml index e0f1830..7a06acf 100644 --- a/jjb/yaml/openbook-core.yaml +++ b/jjb/yaml/openbook-core.yaml @@ -31,7 +31,7 @@ [url: "git@github.com:Talligent/openbook-core.git"] ], poll: true, - changelog: true + changelog: false ] ]) } diff --git a/jjb/yaml/openbook-pipeline.yaml b/jjb/yaml/openbook-pipeline.yaml index 6300bad..d9f2768 100644 --- a/jjb/yaml/openbook-pipeline.yaml +++ b/jjb/yaml/openbook-pipeline.yaml @@ -38,7 +38,7 @@ [url: "git@github.com:Talligent/{artifact}.git"] ], poll: true, - changelog: true + changelog: false ] ]) sh(script: "gradle -PbuildNumber=4.1.${{BUILD_NUMBER}} -PbuildMode=buildProd -Dorg.gradle.daemon=false clean shadowJar") |
