web label
This commit is contained in:
parent
3ce650ea86
commit
a1c0452607
1 changed files with 6 additions and 6 deletions
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
|
@ -1,9 +1,9 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent { label 'web' }
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
when {
|
when {
|
||||||
branch 'master'
|
branch 'master'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh '''cd main
|
sh '''cd main
|
||||||
|
@ -12,8 +12,8 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
when {
|
when {
|
||||||
branch 'master'
|
branch 'master'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh "rm -rf /var/www/ellpeck/*"
|
sh "rm -rf /var/www/ellpeck/*"
|
||||||
|
@ -21,4 +21,4 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue