fup-try-013

This commit is contained in:
Philippe Caseiro 2023-06-19 16:23:21 +02:00
parent 15be1b9f7d
commit 117c8b6550
1 changed files with 2 additions and 8 deletions

10
Jenkinsfile vendored
View File

@ -9,24 +9,18 @@ symfonyAppPipeline('ubuntu:22.04', [
// Run docker image build, verification and publication stages // Run docker image build, verification and publication stages
'postSymfonyAppPipeline': { 'postSymfonyAppPipeline': {
stage('Build and publish docker images') { stage('Build and publish docker images') {
steps {
make
make release
}
}
stage('Build and publish hydra-dispatcher image') {
// Retrieve current tag // Retrieve current tag
String currentTag = sh(script: 'git tag --points-at HEAD | head -n 1', returnStdout: true).trim() String currentTag = sh(script: 'git tag --points-at HEAD | head -n 1', returnStdout: true).trim()
// Retrieve default tag // Retrieve default tag
String defaultTag = sh(returnStdout: true, script: 'git describe --always').trim() String defaultTag = sh(returnStdout: true, script: 'git describe --always').trim()
container.buildAndPublishImage([ kubecontainer.buildAndPublishImage([
'imageName': 'reg.cadoles.com/pcaseiro/myapplication-standalone', 'imageName': 'reg.cadoles.com/pcaseiro/myapplication-standalone',
// Use current tag or default tag if not defined // Use current tag or default tag if not defined
'imageTag': defaultTag, 'imageTag': defaultTag,
'dockerfile': './misc/images/myapplication-standalone/Dockerfile', 'dockerfile': './misc/images/myapplication-standalone/Dockerfile',
'dryRun': false 'dryRun': false
]) ])
container.buildAndPublishImage([ kubecontainer.buildAndPublishImage([
'imageName': 'reg.cadoles.com/pcaseiro/myapplication-kube', 'imageName': 'reg.cadoles.com/pcaseiro/myapplication-kube',
// Use current tag or default tag if not defined // Use current tag or default tag if not defined
'imageTag': defaultTag, 'imageTag': defaultTag,