feat(jenkins): adding new default jenkins configuration
This commit is contained in:
parent
69c6b35d17
commit
ea3f7f63d0
|
@ -0,0 +1,26 @@
|
||||||
|
// Intégration de la librairie Cadoles (voir https://forge.cadoles.com/Cadoles/Jenkins)
|
||||||
|
@Library("cadoles") _
|
||||||
|
|
||||||
|
// Utilisation du pipeline partagé pour les applications Symfony de Cadoles
|
||||||
|
// Le nom de l'image Docker passée en paramètre vous permet de préciser l'environnement de test
|
||||||
|
// de votre application Symfony
|
||||||
|
symfonyAppPipeline('ubuntu:22.04', [
|
||||||
|
'hooks': [
|
||||||
|
// Run docker image build, verification and publication stages
|
||||||
|
'postSymfonyAppPipeline': {
|
||||||
|
stage('Build and publish hydra-dispatcher image') {
|
||||||
|
// Retrieve current tag
|
||||||
|
String currentTag = sh(script: 'git tag --points-at HEAD | head -n 1', returnStdout: true).trim()
|
||||||
|
// Retrieve default tag
|
||||||
|
String defaultTag = sh(returnStdout: true, script: 'git describe --always').trim()
|
||||||
|
container.buildAndPublishImage([
|
||||||
|
'imageName': 'reg.cadoles.com/pcaseiro/hydra-sql',
|
||||||
|
// Use current tag or default tag if not defined
|
||||||
|
'imageTag': defaultTag,
|
||||||
|
'dockerfile': './misc/images/hydra-sql-standalone/Dockerfile',
|
||||||
|
'dryRun': false
|
||||||
|
])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
])
|
Loading…
Reference in New Issue