Skip to content
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
6 changes: 3 additions & 3 deletions pkg/htmlreport/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ type SigFailure struct {
}

var jobRegexAliases = map[string]string{
"compute": "sig-compute$|sig-compute-serial$|sig-compute-migrations$|sig-operator$|vgpu$|sev$",
"network": "sig-network$|sriov$",
"storage": "sig-storage$",
"compute": "sig-compute|sig-compute-serial|sig-compute-migrations|sig-operator|vgpu|sev",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this might also pull in other jobs from the main branch. do we want that?

also do we not want to restrict from which release branches we want to pull in the results?

(maybe I am also overthinking here...)

Suggested change
"compute": "sig-compute|sig-compute-serial|sig-compute-migrations|sig-operator|vgpu|sev",
"compute": "(sig-compute|sig-compute-serial|sig-compute-migrations|sig-operator|vgpu|sev)(-1.[0-9]+)?",

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure @dhiller - I think if the e2e job name includes say sig-compute then we should be happy enough that sig-compute own the job. Also the metric includes any jobs with sig-compute in the name

case strings.Contains(job.jobName, "sig-compute") || strings.Contains(job.jobName, "vgpu"):

In a followup PR, I am going to split out sig-operator and add sig-monitoring to generate reports for each of those so that each badge will have its own linked report.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think @dhiller ?

"network": "sig-network|sriov",
"storage": "sig-storage",
}

func fetchResults(resultsPath string) (*HTMLReportResults, error) {
Expand Down