-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement job priorities in daily report (#100)
* Add first version of job priorities calculation (WIP) Signed-off-by: Crola1702 <[email protected]> * Add gazebo jobs priorities Signed-off-by: Crola1702 <[email protected]> * Return job priority in known issues section Signed-off-by: Crola1702 <[email protected]> * Show formatted priority in a new column Signed-off-by: Crola1702 <[email protected]> * Sort known issues by priority Signed-off-by: Crola1702 <[email protected]> * Rename sql query for clarity Signed-off-by: Crola1702 <[email protected]> * Address PR comments Signed-off-by: Crola1702 <[email protected]> --------- Signed-off-by: Crola1702 <[email protected]>
- Loading branch information
Showing
4 changed files
with
383 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
SELECT job_name, | ||
error_name | ||
FROM test_fail_issues | ||
WHERE github_issue = "@param1@" | ||
GROUP BY github_issue, | ||
job_name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.