summaryrefslogtreecommitdiff
path: root/jjb/yaml/openbook-core.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/yaml/openbook-core.yaml')
-rw-r--r--jjb/yaml/openbook-core.yaml60
1 files changed, 0 insertions, 60 deletions
diff --git a/jjb/yaml/openbook-core.yaml b/jjb/yaml/openbook-core.yaml
deleted file mode 100644
index 7a06acf..0000000
--- a/jjb/yaml/openbook-core.yaml
+++ /dev/null
@@ -1,60 +0,0 @@
----
-- 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")
- }
- }
- }
- }