Jenkinsfile fixes
gitea/hedera-web/pipeline/head There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2022-05-05 11:19:29 +02:00
parent 2d12be21cb
commit 8ec889a9f7
1 changed files with 12 additions and 6 deletions

18
Jenkinsfile vendored
View File

@ -28,8 +28,10 @@ pipeline {
}
stage('Package') {
when {
branch 'master'
branch 'test'
anyOf {
branch 'master'
branch 'test'
}
}
agent {
docker {
@ -46,8 +48,10 @@ pipeline {
}
stage('Build') {
when {
branch 'master'
branch 'test'
anyOf {
branch 'master'
branch 'test'
}
}
environment {
CREDS = credentials('docker-registry')
@ -60,8 +64,10 @@ pipeline {
}
stage('Deploy') {
when {
branch 'master'
branch 'test'
anyOf {
branch 'master'
branch 'test'
}
}
environment {
DOCKER_HOST = "${env.SWARM_HOST}"