summaryrefslogtreecommitdiff
path: root/jjb/yaml/image-foundry.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/yaml/image-foundry.yaml')
-rw-r--r--jjb/yaml/image-foundry.yaml25
1 files changed, 25 insertions, 0 deletions
diff --git a/jjb/yaml/image-foundry.yaml b/jjb/yaml/image-foundry.yaml
new file mode 100644
index 0000000..05b484d
--- /dev/null
+++ b/jjb/yaml/image-foundry.yaml
@@ -0,0 +1,25 @@
+---
+- job:
+ name: image-foundry
+ project-type: pipeline
+ dsl: |
+ pipeline {
+ agent {
+ node {
+ label "image_foundry"
+ }
+ }
+ stages {
+ stage("checkout-elements") {
+ steps {
+ git(poll: true, branch: "master", url: "git@github.vcp.vzwnet.com:konstca/image-foundry-vzw.git")
+ }
+ }
+ stage("diskimage-builder") {
+ steps {
+ git(poll: true, branch: "master", url: "git@github.vcp.vzwnet.com:konstca/image-foundry.git")
+ sh(script: "./ci-script.sh")
+ }
+ }
+ }
+ }