removed all slaves

This commit is contained in:
Jordan A 2019-05-08 16:07:23 -07:00
parent c111877e5d
commit a20db52cca

12
Jenkinsfile vendored
View file

@ -1,6 +1,6 @@
#!/bin/env groovy #!/bin/env groovy
pipeline { pipeline {
agent none agent any
stages { stages {
@ -17,24 +17,30 @@ pipeline {
} }
} }
stage('Deploy to Artifactory') { stage('Deploy to Artifactory') {
/*
agent { agent {
node { node {
label 'tester' label 'tester'
} }
} }
*/
steps { steps {
sh '' // sh ''
echo 'NOT YET IMPLEMENTED'
} }
} }
stage('Deploy to QA') { stage('Deploy to QA') {
/*
agent { agent {
node { node {
label 'tester' label 'tester'
} }
} }
*/
steps { steps {
sh '' //sh ''
echo 'NOT YET IMPLEMENTED'
} }
} }
} }