-
Notifications
You must be signed in to change notification settings - Fork 5k
[CI] Send slack message with build status #21428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| #!/usr/bin/env groovy | ||
|
|
||
| @Library('apm@current') _ | ||
| @Library('apm@test/slackComment') _ | ||
|
|
||
| import groovy.transform.Field | ||
| /** | ||
|
|
@@ -24,6 +24,7 @@ pipeline { | |
| PIPELINE_LOG_LEVEL = 'INFO' | ||
| PYTEST_ADDOPTS = "${params.PYTEST_ADDOPTS}" | ||
| RUNBLD_DISABLE_NOTIFICATIONS = 'true' | ||
| SLACK_CHANNEL = "#beats-ci-builds" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Btw, we already have a
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Eventually, my idea was to play a bit with the notifications in a private channel, then once I'm happy with, I'll change it in another PR :) |
||
| TERRAFORM_VERSION = "0.12.24" | ||
| XPACK_MODULE_PATTERN = '^x-pack\\/[a-z0-9]+beat\\/module\\/([^\\/]+)\\/.*' | ||
| } | ||
|
|
@@ -121,7 +122,7 @@ pipeline { | |
| runbld(stashedTestReports: stashedTestReports, project: env.REPO) | ||
| } | ||
| cleanup { | ||
| notifyBuildResult(prComment: true) | ||
| notifyBuildResult(prComment: true, slackComment: true) | ||
| } | ||
| } | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.