Skip to content

Commit 46114b0

Browse files
committed
Update premerge metrics to collect metrics for libc++ 3 stages.
1 parent 67142b9 commit 46114b0

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.ci/metrics/metrics.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@
2828
# Lists the Github workflows we want to track. Maps the Github job name to
2929
# the metric name prefix in grafana.
3030
# This metric name is also used as a key in the job->name map.
31-
GITHUB_WORKFLOW_TO_TRACK = {"CI Checks": "github_llvm_premerge_checks"}
31+
GITHUB_WORKFLOW_TO_TRACK = {
32+
"CI Checks": "github_llvm_premerge_checks",
33+
"Build and Test libc++": "github_libc++_premerge_checks",
34+
}
3235

3336
# Lists the Github jobs to track for a given workflow. The key is the stable
3437
# name (metric name) of the workflow (see GITHUB_WORKFLOW_TO_TRACK).
@@ -39,6 +42,11 @@
3942
"Build and Test Linux": "premerge_linux",
4043
"Build and Test Windows": "premerge_windows",
4144
}
45+
"github_libc++_premerge_checks": {
46+
"libc++ Stage1 Testing": "premerge_libcxx_stage1",
47+
"libc++ Stage2 Testing": "premerge_libcxx_stage2",
48+
"libc++ Stage3 Testing": "premerge_libcxx_stage3",
49+
}
4250
}
4351

4452
# The number of workflows to pull when sampling Github workflows.

0 commit comments

Comments
 (0)