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-database-pipeline.yaml | |
| parent | 9797586697647222eaa863b7656b7b434d1afc9d (diff) | |
many things
Diffstat (limited to 'jjb/yaml/openbook-database-pipeline.yaml')
| -rw-r--r-- | jjb/yaml/openbook-database-pipeline.yaml | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/jjb/yaml/openbook-database-pipeline.yaml b/jjb/yaml/openbook-database-pipeline.yaml deleted file mode 100644 index 06d98c5..0000000 --- a/jjb/yaml/openbook-database-pipeline.yaml +++ /dev/null @@ -1,88 +0,0 @@ ---- -- job: - name: openbook-database-pipeline - project-type: pipeline - dsl: | - pipeline { - agent { - node { - label "master" - } - } - triggers { - pollSCM 'H/5 * * * *' - } - stages { - stage("docker-container") { - agent { - node { - label "openbook_v4" - customWorkspace "workspace/openbook-database" - } - } - steps { - checkout([ - scm: [ - $class: "GitSCM", - branches: [ - [name: "master"] - ], - userRemoteConfigs: [ - [url: "git@github.com:Talligent/openbook-v4-ci.git"] - ], - poll: false, - changelog: false - ] - ]) - sh(script: "./build-docker-containers.sh database") - } - } - stage("fetch-ansible") { - agent { - node { - label "openbook_v4" - customWorkspace "workspace/openbook-v4-installer" - } - } - steps { - checkout([ - scm: [ - $class: "GitSCM", - branches: [ - [name: "master"] - ], - userRemoteConfigs: [ - [url: "git@github.com:Talligent/openbook-v4-installer.git"] - ], - poll: false, - changelog: false - ] - ]) - } - } - stage("sql-script") { - agent { - node { - label "openbook_v4" - customWorkspace "workspace/openbook-database" - } - } - steps { - checkout([ - scm: [ - $class: "GitSCM", - branches: [ - [name: "master"] - ], - userRemoteConfigs: [ - [url: "git@github.com:Talligent/openbook-database.git"] - ], - poll: true, - changelog: false - ] - ]) - sh(script: "./run-ansible-playbook.sh") - } - } - } - } |
