gCubeDeployer/Jenkinsfile

138 lines
4.2 KiB
Groovy

#!groovy
/**
* Deploy components to the D4Science Infrastructure (dev-only)
*
* Roberto Cirillo (ISTI-CNR)
*/
// related jenkins job: https://jenkins.d4science.org/job/gCubeDeployer/
def agent_root_folder = '/var/lib/jenkins/.m2'
pipeline {
agent {
label 'CD'
}
triggers {
// once a day on the 1st and 15th of every month
cron 'H H 1,15 * *'
}
//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')
environment {
AGENT_ROOT_FOLDER = "${agent_root_folder}"
DEPLOY_FILE = "${agent_root_folder}/deploy.txt"
}
stages {
stage('initialize environment') {
steps {
sh '''
date=`date`
// if [ ! -e $DEPLOY_FILE] then
touch $DEPLOY_FILE
// fi
'''
}
}
stage('Deploy from system') {
when{
allOf{
triggeredBy 'TimerTrigger'
environment name: 'IS_CRON', value: 'True'
}
}
steps {
echo 'Cron build enabled. Deploy from system ongoing'
echo 'Components to deploy:'
cat "${DEPLOY_FILE}"
script {
def length="wc -l ${DEPLOY_FILE}"
for (int i = 0; i < length ; ++i) {
echo "Component $i+1: " < "${DEPLOY_FILE}"
}
}
}
}
stage('Nothing to do by System ') {
when{
allOf{
triggeredBy 'TimerTrigger'
environment name: 'IS_CRON', value: 'False'
}
}
steps {
echo 'Do Nothing: cron build disabled'
}
}
stage('Nothing to do by Job ') {
when{
environment name: 'IS_CRON', value: 'True'
anyOf{
triggeredBy 'BuildUpstreamCause'
triggeredBy 'UpstreamCause'
}
}
steps {
echo 'Do Nothing: cron build disabled'
}
}
stage('Add new pending deploy ') {
when{
environment name: 'IS_CRON', value: 'True'
anyOf{
triggeredBy 'BuildUpstreamCause'
triggeredBy 'UpstreamCause'
}
}
steps {
sh '''
echo "Cron build enabled. New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION} appended to the deploy file"
echo "${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION}" >> $DEPLOY_FILE
'''
}
}
stage('Deploy from job ') {
when{
environment name: 'IS_CRON', value: 'False'
anyOf{
triggeredBy 'BuildUpstreamCause'
triggeredBy 'UpstreamCause'
}
}
steps {
echo "Cron build disabled. New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION} ongoing"
}
}
}
post {
always {
script {
sh '''
echo ' jobs currently appended:'
'''
//cat ./${ACTION_DEPLOY_FILE}.csv
}
}
success {
echo 'The deploy pipeline worked!'
emailext attachLog: true,//attachmentsPattern: "**/${ACTION_DEPLOY_FILE}.csv",
to: 'roberto.cirillo@isti.cnr.it',
subject: "Deploy report",
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}"
}
}
}