-->

mercredi 28 décembre 2016

Send hipchat notification from Jenkins pipeline

Introduction :

For a few months I have been working on automating the deployment of web executables on docker containers hosted on AMAZON AWS, and I have added a hipchat notification to each deployment.

@NonCPS
def notify(message, color) {
//HipChatV1Service(String server, String token, String roomIds, String sendAs)
def hipChatV1 = new jenkins.plugins.hipchat.impl.HipChatV1Service("api.hipchat.com", "token", "roomIds", "Jenkins");
hipChatV1.publish(message, color, /*notify?*/true);
}
view raw 1- pipeline hosted with ❤ by GitHub
notify("SUCCESSFUL: Job 'JOB_NAME Build number [${env.BUILD_NUMBER}] TO AMAZON AWS", "green")
notify("FAILED: Job 'JOB_NAME Build number [${env.BUILD_NUMBER}] TO AMAZON AWS", "red")

Aucun commentaire :

Enregistrer un commentaire