Skip to content
Snippets Groups Projects
Commit 62dde69e authored by tgsiegel's avatar tgsiegel
Browse files

test

parent 5e556783
No related branches found
No related tags found
No related merge requests found
...@@ -5,12 +5,13 @@ pipeline { ...@@ -5,12 +5,13 @@ pipeline {
} }
stages { stages {
// stage('notify') { stage('notify') {
// steps { steps {
// BUILD_TRIGGERED_BY = "${currentBuild.getBuildCauses()[0].shortDescription} / ${currentBuild.getBuildCauses()[0].userId}" script {
// slackSend(channel: "ci", message: "${JOB_NAME}-#${BUILD_NUMBER}-${GIT_BRANCH} triggered by ${BUILD_TRIGGERED_BY} (<${BUILD_URL}|Open>)") slack_send_start()
// } }
// } }
}
stage('build new dawn-cli') { stage('build new dawn-cli') {
steps { steps {
...@@ -47,10 +48,14 @@ pipeline { ...@@ -47,10 +48,14 @@ pipeline {
post { post {
success { success {
slack_send_success script {
slack_send_success()
}
} }
failure { failure {
slack_send_failure script {
slack_send_failure()
}
} }
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment