Skip to content

Commit

Permalink
Exclude subworkflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aednichols committed Dec 5, 2023
1 parent 1e01f0e commit 5836edf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ci/bin/test.inc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1619,6 +1619,7 @@ cromwell::build::print_workflow_statistics() {
START_TIMESTAMP as START,
END_TIMESTAMP as end
FROM WORKFLOW_METADATA_SUMMARY_ENTRY
WHERE PARENT_WORKFLOW_EXECUTION_UUID IS NULL # exclude subworkflows
ORDER BY START_TIMESTAMP DESC
LIMIT 20;"

Expand All @@ -1629,6 +1630,7 @@ cromwell::build::print_workflow_statistics() {
START_TIMESTAMP as start,
END_TIMESTAMP as END
FROM WORKFLOW_METADATA_SUMMARY_ENTRY
WHERE PARENT_WORKFLOW_EXECUTION_UUID IS NULL
ORDER BY END_TIMESTAMP DESC
LIMIT 20;"

Expand All @@ -1639,6 +1641,7 @@ cromwell::build::print_workflow_statistics() {
START_TIMESTAMP as start,
END_TIMESTAMP as end
FROM WORKFLOW_METADATA_SUMMARY_ENTRY
WHERE PARENT_WORKFLOW_EXECUTION_UUID IS NULL
ORDER BY RUNTIME_MINUTES DESC
LIMIT 20;"
}
Expand Down

0 comments on commit 5836edf

Please sign in to comment.