Skip to content

Commit

Permalink
Updated log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ashahi1 committed Feb 12, 2018
1 parent 29b13af commit 6c11c3b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pipeline {
stage('Checkout code') {
failFast true
parallel {
stage('Checkout on vdvs-slave-2') {
stage('Checkout for ESX 6.5 runs') {
/* Let's make sure we have the repository cloned to our workspace. */
agent {
label "vdvs-slave-two"
Expand All @@ -14,7 +14,7 @@ pipeline {
checkout scm
}
}
stage('Checkout on vdvs-slave-3') {
stage('Checkout for ESX 6.0 runs') {
/* Let's make sure we have the repository cloned to our workspace..*/
agent {
label "vdvs-slave-three"
Expand All @@ -30,7 +30,7 @@ pipeline {
/* This builds VDVS binaries */
failFast true
parallel {
stage('Build binaries on vdvs-slave-2') {
stage('Build binaries for ESX 6.5 runs') {
agent {
label "vdvs-slave-two"
}
Expand All @@ -41,7 +41,7 @@ pipeline {
}
}

stage('Build binaries on vdvs-slave-3') {
stage('Build binaries for ESX 6.0 runs') {
agent {
label "vdvs-slave-three"
}
Expand All @@ -57,7 +57,7 @@ pipeline {
stage('Deployment') {
failFast true
parallel {
stage('Deploy VDVS On 6.5 setup') {
stage('Deploy binaries for ESX 6.5 runs') {
agent {
label "vdvs-slave-two"
}
Expand All @@ -70,7 +70,7 @@ pipeline {
}
}

stage('Deploy On 6.0 setup') {
stage('Deploy binaries for ESX 6.0 runs') {
agent {
label "vdvs-slave-three"
}
Expand All @@ -88,7 +88,7 @@ pipeline {
stage('Test VDVS') {
failFast true
parallel {
stage('Test On 6.5 setup') {
stage('Run tests on ESX 6.5') {
agent {
label "vdvs-slave-two"
}
Expand All @@ -102,7 +102,7 @@ pipeline {
sh "make test-vm"
}
}
stage('Test On 6.0 setup') {
stage('Run tests on ESX 6.0') {
agent {
label "vdvs-slave-three"
}
Expand All @@ -121,7 +121,7 @@ pipeline {
stage('Test vFile') {
failFast true
parallel {
stage('Test vFile On 6.5 setup') {
stage('Run vFile tests on ESX 6.5') {
agent {
label "vdvs-slave-two"
}
Expand Down Expand Up @@ -151,7 +151,7 @@ pipeline {
}
}

stage('Test vFile On 6.0 setup') {
stage('Run vFile tests on ESX 6.0') {
agent {
label "vdvs-slave-three"
}
Expand Down Expand Up @@ -185,7 +185,7 @@ pipeline {
}
}

stage('Windows plugin') {
stage('Test Windows plugin') {
/* This builds, deploys and tests the windows binaries */
agent {
label "vdvs-slave-two"
Expand Down

0 comments on commit 6c11c3b

Please sign in to comment.