summaryrefslogtreecommitdiff
path: root/jjb/yaml/deploy-dev-env.yaml
blob: 1648c4a5d9d77149005601d81aa51d71bf368e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
- job:
    name: deploy-dev-env
    project-type: pipeline
    dsl: |
      pipeline {
          agent {
              node {
                label "openbook_v4"
              }
          }
          stages {
              stage("deploy_dev_env") {
                  steps {
                      checkout([
                          scm: [
                              $class: "GitSCM",
                              branches: [
                                  [name: "master"]
                              ],
                              userRemoteConfigs: [
                                  [url: "git@github.com:Talligent/openbook-v4-installer.git"]
                              ]
                          ]
                      ])
                      sh(script: "./deploy-dev-env.sh")
                  }
              }
          }
      }