-
Notifications
You must be signed in to change notification settings - Fork 448
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
[CI] Test packages basic subscription - WIP #13377
base: main
Are you sure you want to change the base?
Conversation
Verbose mode allows us to show the full description of the issue that it is going to be created or updated.
🚀 Benchmarks reportPackage
|
Data stream | Previous EPS | New EPS | Diff (%) | Result |
---|---|---|---|---|
outlook_activity |
12658.23 | 7633.59 | -5024.64 (-39.69%) | 💔 |
service_health |
83333.33 | 55555.56 | -27777.77 (-33.33%) | 💔 |
sharepoint_site_usage_detail |
6578.95 | 4149.38 | -2429.57 (-36.93%) | 💔 |
teams_user_activity_user_counts |
7692.31 | 6134.97 | -1557.34 (-20.25%) | 💔 |
viva_engage_device_usage_user_counts |
9900.99 | 3759.4 | -6141.59 (-62.03%) | 💔 |
onedrive_usage_file_counts |
11111.11 | 8849.56 | -2261.55 (-20.35%) | 💔 |
onedrive_usage_storage |
19607.84 | 16393.44 | -3214.4 (-16.39%) | 💔 |
To see the full report comment with /test benchmark fullreport
dev/testsreporter/testsreporter.go
Outdated
@@ -137,7 +145,7 @@ func errorsFromTests(resultsPath string, options CheckOptions) ([]*packageError, | |||
} | |||
|
|||
// packagesFromTests returns the sorted packages failing given the results file | |||
func packagesFromTests(resultsPath string, options CheckOptions) ([]string, error) { | |||
func packagesFromTests(resultsPath string) ([]string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed unused parameter
dev/testsreporter/builderror.go
Outdated
"owners": p.teams, | ||
} | ||
func (b *buildError) SummaryData() map[string]any { | ||
data := b.dataError.Data() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved the creation of the common data from dataError
struct to its own method.
dev/testsreporter/builderror.go
Outdated
"previousBuilds": p.errorLinks.previousBuilds, | ||
} | ||
func (b *buildError) DescriptionData() map[string]any { | ||
return b.errorLinks.Data() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as in dataError
, moved the creation of the common data from errorLinks
struct to its own method.
sb.WriteString(p.stackVersion) | ||
sb.WriteString("] ") | ||
} | ||
sb.WriteString(p.dataError.String()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
String built from the common data (dataError
) is now built in just one place, as a method of the given struct.
dev/testsreporter/reporter.go
Outdated
maxPreviousLinks: maxPreviousLinks, | ||
ghCli: options.GhCli, | ||
maxPreviousLinks: options.MaxPreviousLinks, | ||
verbose: options.Verbose, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a new verbose parameter that it can be enabled via the TESTSREPORTER_VERBOSE_MODE_ENABLED
environment variable.
Currently, this will show the full description of the issue that it is going to be created or updated.
.buildkite/scripts/common.sh
Outdated
@@ -757,7 +809,7 @@ teardown_test_package() { | |||
} | |||
|
|||
list_all_directories() { | |||
find . -maxdepth 1 -mindepth 1 -type d | xargs -I {} basename {} | sort | |||
find . -maxdepth 1 -mindepth 1 -type d | xargs -I {} basename {} | sort |grep -E '^elastic_package_registry|cloud_defend|beaconing$' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be removed.
@@ -20,7 +23,7 @@ | |||
- {{ . }} | |||
{{- end }} | |||
{{ end -}} | |||
{{ if ne (len .owners) 0 -}} | |||
{{ if and ( ne .owners nil) (ne (len .owners) 0) -}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid errors if owners
list is not defined.
- label: "Check integrations local stacks and basic subscription" | ||
trigger: "integrations" | ||
build: | ||
env: | ||
SERVERLESS: "false" | ||
FORCE_CHECK_ALL: "true" | ||
PUBLISH_COVERAGE_REPORTS: "false" | ||
ELASTIC_SUBSCRIPTION: "basic" | ||
depends_on: | ||
- step: "check" | ||
allow_failure: false | ||
|
||
- label: "Check integrations local stacks and basic subscription - LogsDB" | ||
trigger: "integrations" | ||
build: | ||
env: | ||
SERVERLESS: "false" | ||
FORCE_CHECK_ALL: "true" | ||
STACK_LOGSDB_ENABLED: "true" | ||
PUBLISH_COVERAGE_REPORTS: "false" | ||
ELASTIC_SUBSCRIPTION: "basic" | ||
depends_on: | ||
- step: "check" | ||
allow_failure: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TBD
Split this PR into two different PRs: |
💔 Build Failed
Failed CI StepsHistory
|
|
Proposed commit message
Update CI scripts and tools (
ReportFailedTests
) to allow run Elastic stack with other subscriptions.Currently, it is just supported "basic" and "trial".
Checklist
changelog.yml
file.Author's Checklist
go.mod
,go.sum
and.buildkite/scripts/common.sh
.How to test this PR locally
Related issues