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 {
|
||||
agent any
|
||||
agent { label 'web' }
|
||||
stages {
|
||||
stage('Build') {
|
||||
when {
|
||||
branch 'master'
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
steps {
|
||||
sh '''cd main
|
||||
|
@ -12,8 +12,8 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
when {
|
||||
branch 'master'
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
steps {
|
||||
sh "rm -rf /var/www/ellpeck/*"
|
||||
|
@ -21,4 +21,4 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue