add new echo messages

This commit is contained in:
Roberto Cirillo 2022-04-15 17:20:46 +02:00
parent cfcab49208
commit 8c773ade0c
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
}
}
steps {
echo 'Deploy from system properly triggered'
echo 'Cron build enabled. Deploy from system ongoing'
}
}
stage('Nothing to do ') {
@ -40,7 +40,7 @@ pipeline {
}
}
steps {
echo 'Do Nothing: cron disabled on agent'
echo 'Do Nothing: cron build disabled'
}
}
stage('Add new pending deploy ') {
@ -52,7 +52,7 @@ pipeline {
}
}
steps {
echo "New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION} appended to the deploy file"
echo "Cron build enabled. New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION} appended to the deploy file"
}
}
stage('Deploy from job ') {
@ -64,7 +64,7 @@ pipeline {
}
}
steps {
echo "New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION}"
echo "Cron build disabled. New deploy of ${params.TRIGGER_JOB} - ${params.TRIGGER_VERSION} ongoing"
}
}