Jenkinsfile omit test step when branch not dev
This commit is contained in:
parent
13ec9006a9
commit
6290e9e33f
|
@ -56,6 +56,9 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Test') {
|
||||
when {
|
||||
branch 'dev';
|
||||
}
|
||||
environment {
|
||||
NODE_ENV = ""
|
||||
FIREFOX_BIN = "/opt/firefox/firefox-bin"
|
||||
|
@ -71,6 +74,9 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Docker') {
|
||||
when {
|
||||
not { branch 'dev' }
|
||||
}
|
||||
environment {
|
||||
CREDS = credentials('docker-registry')
|
||||
}
|
||||
|
@ -81,6 +87,9 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
when {
|
||||
not { branch 'dev' }
|
||||
}
|
||||
environment {
|
||||
DOCKER_TLS_VERIFY = 1
|
||||
}
|
||||
|
@ -110,6 +119,9 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Cleanup') {
|
||||
when {
|
||||
not { branch 'dev' }
|
||||
}
|
||||
steps {
|
||||
sh 'docker logout $REGISTRY'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue