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
pipeline {
agent none
agent any
stages {
@ -17,24 +17,30 @@ pipeline {
}
}
stage('Deploy to Artifactory') {
/*
agent {
node {
label 'tester'
}
}
*/
steps {
sh ''
// sh ''
echo 'NOT YET IMPLEMENTED'
}
}
stage('Deploy to QA') {
/*
agent {
node {
label 'tester'
}
}
*/
steps {
sh ''
//sh ''
echo 'NOT YET IMPLEMENTED'
}
}
}