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