gCubeDeployer/Jenkinsfile

161 lines
5.0 KiB
Plaintext
Raw Normal View History

2022-04-22 15:38:43 +02:00
#!groovy
2022-04-22 16:35:54 +02:00
/**
* Deploy components to the D4Science Infrastructure (dev-only)
*
2022-04-22 17:02:12 +02:00
* Roberto Cirillo (ISTI-CNR)
2022-04-22 16:35:54 +02:00
*/
2022-04-22 15:38:43 +02:00
2022-04-22 11:41:05 +02:00
// related jenkins job: https://jenkins.d4science.org/job/gCubeDeployer/
2022-04-22 16:35:54 +02:00
def agent_root_folder = '/var/lib/jenkins/.m2'
def agent_deploy_filename = 'deploy.csv'
2022-04-22 16:35:54 +02:00
def deployList
if (params.deployFile) {
println "Using custom deploy file"
deployList = params.deployFile
} else {
println "Using local deploy file"
2022-04-26 15:25:58 +02:00
//load the report from local
deployList = agent_root_folder+'/'+agent_deploy_filename;
2022-04-26 15:31:23 +02:00
println "Load from local file ${deployList}"
}
// parse the report and extract the data
def components = parseDeployComponent(deployList)
assert 0 < components.size(): "No component found"
for (component in components) {
println "$component"
}
2022-04-22 16:35:54 +02:00
2022-04-15 14:41:39 +02:00
pipeline {
agent {
label 'CD'
}
2022-04-15 15:23:26 +02:00
triggers {
2022-04-26 14:49:16 +02:00
// every fifteen minutes (perhaps at :07, :22, :37, :52)
cron('H/15 * * * *')
2022-04-22 11:41:05 +02:00
// once a day on the 1st and 15th of every month
2022-04-26 14:49:16 +02:00
// cron ('H H 1,15 * *')
2022-04-15 15:23:26 +02:00
}
//once in every two hours slot between 9 AM and 5 PM every weekday (perhaps at 10:38 AM, 12:38 PM, 2:38 PM, 4:38 PM)
// cron('H H(9-16)/2 * * 1-5')
2022-04-15 14:41:39 +02:00
environment {
AGENT_ROOT_FOLDER = "${agent_root_folder}"
2022-04-26 15:25:58 +02:00
DEPLOY_FILE = "${agent_root_folder}/${agent_deploy_filename}"
TRIGGER_JOB= "${params.TRIGGER_JOB}"
TRIGGER_VERSION= "${params.TRIGGER_VERSION}"
2022-04-15 14:41:39 +02:00
}
stages {
stage('initialize environment') {
steps {
sh '''
2022-04-22 17:00:32 +02:00
date=`date`
2022-04-22 17:02:12 +02:00
touch $DEPLOY_FILE
2022-04-22 17:00:32 +02:00
'''
2022-04-15 14:41:39 +02:00
}
}
2022-04-15 15:06:25 +02:00
stage('Deploy from system') {
2022-04-15 14:41:39 +02:00
when{
allOf{
2022-04-15 15:45:23 +02:00
triggeredBy 'TimerTrigger'
2022-04-26 14:49:16 +02:00
// maybe we can add a new condition in order to consider the manual execution of this pipeline
2022-04-22 16:05:03 +02:00
environment name: 'IS_CRON', value: 'True'
2022-04-15 14:41:39 +02:00
}
}
steps {
2022-04-15 17:20:46 +02:00
echo 'Cron build enabled. Deploy from system ongoing'
2022-04-22 15:38:43 +02:00
echo 'Components to deploy:'
2022-04-22 15:42:12 +02:00
cat "${DEPLOY_FILE}"
2022-04-22 15:38:43 +02:00
script {
2022-04-22 15:40:15 +02:00
def length="wc -l ${DEPLOY_FILE}"
2022-04-22 15:38:43 +02:00
for (int i = 0; i < length ; ++i) {
2022-04-22 15:42:12 +02:00
echo "Component $i+1: " < "${DEPLOY_FILE}"
2022-04-22 15:38:43 +02:00
}
}
2022-04-15 14:41:39 +02:00
}
}
2022-04-22 16:03:08 +02:00
stage('Nothing to do by System ') {
2022-04-15 14:41:39 +02:00
when{
2022-04-15 15:49:41 +02:00
allOf{
2022-04-15 16:04:19 +02:00
triggeredBy 'TimerTrigger'
2022-04-22 16:05:03 +02:00
environment name: 'IS_CRON', value: 'False'
2022-04-15 15:49:41 +02:00
}
2022-04-15 14:41:39 +02:00
}
steps {
2022-04-15 17:20:46 +02:00
echo 'Do Nothing: cron build disabled'
}
}
2022-04-22 16:03:08 +02:00
stage('Add new pending deploy ') {
2022-04-15 15:57:10 +02:00
when{
2022-04-22 16:05:03 +02:00
environment name: 'IS_CRON', value: 'True'
2022-04-15 16:26:45 +02:00
anyOf{
2022-04-15 16:04:19 +02:00
triggeredBy 'BuildUpstreamCause'
2022-04-15 16:26:45 +02:00
triggeredBy 'UpstreamCause'
2022-04-15 15:57:10 +02:00
}
}
steps {
2022-04-22 16:50:35 +02:00
sh '''
echo "Cron build enabled. New deploy of ${TRIGGER_JOB} - ${TRIGGER_VERSION} appended to the deploy file"
2022-04-26 15:25:58 +02:00
echo "${TRIGGER_JOB} , ${TRIGGER_VERSION}" >> ${DEPLOY_FILE}
2022-04-22 16:50:35 +02:00
'''
2022-04-15 15:57:10 +02:00
}
}
2022-04-15 15:06:25 +02:00
stage('Deploy from job ') {
when{
2022-04-15 16:26:45 +02:00
environment name: 'IS_CRON', value: 'False'
anyOf{
2022-04-15 16:04:19 +02:00
triggeredBy 'BuildUpstreamCause'
2022-04-15 16:26:45 +02:00
triggeredBy 'UpstreamCause'
2022-04-15 15:57:10 +02:00
}
2022-04-15 15:06:25 +02:00
}
steps {
2022-04-15 17:20:46 +02:00
echo "Cron build disabled. New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION} ongoing"
2022-04-15 15:06:25 +02:00
}
}
2022-04-15 14:41:39 +02:00
}
post {
always {
script {
sh '''
echo ' jobs currently appended:'
'''
2022-04-15 15:06:25 +02:00
//cat ./${ACTION_DEPLOY_FILE}.csv
2022-04-15 14:41:39 +02:00
}
}
success {
echo 'The deploy pipeline worked!'
2022-04-15 15:26:43 +02:00
emailext attachLog: true,//attachmentsPattern: "**/${ACTION_DEPLOY_FILE}.csv",
2022-04-15 14:41:39 +02:00
to: 'roberto.cirillo@isti.cnr.it',
2022-04-15 15:27:56 +02:00
subject: "Deploy report",
2022-04-15 14:41:39 +02:00
body: "${currentBuild.fullDisplayName}. Build time: ${currentBuild.durationString}. See ${env.BUILD_URL}. "
}
failure {
echo 'The deploy pipeline has failed'
emailext attachLog: true,
to: 'roberto.cirillo@isti.cnr.it',
subject: "[Jenkins deploy D4S] deploy ${currentBuild.fullDisplayName} failed",
body: "Something is wrong with ${env.BUILD_URL}"
}
}
}
//a non CPS method is necessary for the usage of splitEachLine()
@NonCPS
def parseDeployComponent(def deployList) {
def components = []
"${deployList}".splitEachLine(',') { columns ->
if (columns[0].startsWith('#') || columns[0].startsWith('Components'))
return
components.add([
name : columns[1],
version : columns[2],
]
)
}
return components
}