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