diff options
Diffstat (limited to 'jjb/yaml/deploy-dev-env.yaml')
| -rw-r--r-- | jjb/yaml/deploy-dev-env.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/jjb/yaml/deploy-dev-env.yaml b/jjb/yaml/deploy-dev-env.yaml new file mode 100644 index 0000000..1648c4a --- /dev/null +++ b/jjb/yaml/deploy-dev-env.yaml @@ -0,0 +1,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") + } + } + } + } |
