blob: 4bd319875b77765719f2a07bb8118ea5c3eb6488 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
- job:
name: deploy-dev-env
display-name: "deploy-dev-env"
project-type: freestyle
description: "Uses the ansible playbook that was generated by the build-docker-containers job to deploy Openbook onto the development cluster."
node: openbook_v4
properties:
- build-discarder:
days-to-keep: 0
num-to-keep: 1
artifact-days-to-keep: 0
artifact-num-to-keep: 0
triggers:
- timed: "H 1 * * *"
scm:
- git:
url: git@github.com:Talligent/openbook-v4-installer.git
branches:
- master
builders:
- shell: |
./deploy-dev-env.sh
|