Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .ci/buildDockerImages.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ pipeline {
booleanParam(name: 'rebuild_analyzer', defaultValue: "false", description: "Rebuild analyzer [https://github.com/elastic/observability-dev/tree/master/apps/automation/rebuild-analyzer]")
booleanParam(name: 'ruby', defaultValue: 'false', description: '')
booleanParam(name: 'rum', defaultValue: 'false', description: '')
booleanParam(name: 'slack_apm_report', defaultValue: 'false', description: "Slack APM Bridge [https://github.com/elastic/observability-dev/tree/master/tools/report-bridge]")
booleanParam(name: 'testPlans', defaultValue: "false", description: "Test Plans app")
booleanParam(name: 'weblogic', defaultValue: "false", description: "")
booleanParam(name: 'load_orch', defaultValue: "false", description: "Load testing orchestrator [https://github.com/elastic/observability-dev/tree/master/apps/automation/bandstand]")
Expand Down Expand Up @@ -400,6 +401,25 @@ pipeline {
folder: "apps/automation/integrations/reporter")
}
}
stage('Build hey-apm reports Slack integration'){
options {
skipDefaultCheckout()
}
when{
beforeAgent true
expression { return params.slack_apm_report}
}
steps {
deleteDir()
dockerLoginElasticRegistry()
buildDockerImage(
repo: 'https://github.com/elastic/observability-dev',
tag: 'slack-bridge-hey-apm',
version: 'latest',
push: true,
folder: "tools/report-bridge")
}
}
stage('Build Heartbeat'){
options {
skipDefaultCheckout()
Expand Down