From d0a8d8d4378ef37e438b770a35ea66d4b7be534b Mon Sep 17 00:00:00 2001 From: arthur tourneyrie Date: Sun, 15 Mar 2020 17:54:06 -0400 Subject: [PATCH] fckoff --- Jenkinsfile | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 67f9923ac..69caa664f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,13 @@ pipeline { +environment { + + SLACK_CHANNEL = "#gayfuckassignment" + SLACK_TEAM_DOMAIN = "yeetus345" + SLACK_TOKEN = credentials("ilhAultZiny2Kbijeb1h6XCC") + DEPLOY_URL = "http://localhost:9090/job/spring-petclinic" + } + agent any stages { stage('Build') { @@ -7,7 +15,18 @@ pipeline { slackSend channel: 'notif', message: "Successful build!" sh './mvnw package' } - } + post { + success { + slackSend( + teamDomain: "${env.SLACK_TEAM_DOMAIN}", + token: "${env.SLACK_TOKEN}", + channel: "${env.SLACK_CHANNEL}", + color: "good", + message: "I absolutetly hate this, but hey the build succeeded" + ) + } + } + } stage('Test') { steps { sh './mvnw package'