mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 22:15:50 +00:00
removed all slaves
This commit is contained in:
parent
c111877e5d
commit
a20db52cca
1 changed files with 9 additions and 3 deletions
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
|
@ -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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue