diff --git a/.ci/metrics/metrics.py b/.ci/metrics/metrics.py index a5ee893650d63..f3ca5d2dd4f75 100644 --- a/.ci/metrics/metrics.py +++ b/.ci/metrics/metrics.py @@ -21,7 +21,7 @@ # Lists the Github workflows we want to track. Maps the Github job name to # the metric name prefix in grafana. # This metric name is also used as a key in the job->name map. -GITHUB_WORKFLOW_TO_TRACK = {"LLVM Premerge Checks": "github_llvm_premerge_checks"} +GITHUB_WORKFLOW_TO_TRACK = {"CI Checks": "github_llvm_premerge_checks"} # Lists the Github jobs to track for a given workflow. The key is the stable # name (metric name) of the workflow (see GITHUB_WORKFLOW_TO_TRACK). @@ -29,8 +29,8 @@ # name. GITHUB_JOB_TO_TRACK = { "github_llvm_premerge_checks": { - "Linux Premerge Checks (Test Only - Please Ignore Results)": "premerge_linux", - "Windows Premerge Checks (Test Only - Please Ignore Results)": "premerge_windows", + "Build and Test Linux (Test Only - Please Ignore Results)": "premerge_linux", + "Build and Test Windows (Test Only - Please Ignore Results)": "premerge_windows", } } diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml index c315ee37646d2..2ee1ecaf505c3 100644 --- a/.github/workflows/premerge.yaml +++ b/.github/workflows/premerge.yaml @@ -1,4 +1,4 @@ -name: LLVM Premerge Checks +name: CI Checks permissions: contents: read @@ -25,7 +25,7 @@ concurrency: jobs: premerge-checks-linux: - name: Linux Premerge Checks (Test Only - Please Ignore Results) + name: Build and Test Linux (Test Only - Please Ignore Results) if: >- github.repository_owner == 'llvm' && (github.event_name != 'pull_request' || github.event.action != 'closed') @@ -74,7 +74,7 @@ jobs: include-hidden-files: 'true' premerge-checks-windows: - name: Windows Premerge Checks (Test Only - Please Ignore Results) + name: Build and Test Windows (Test Only - Please Ignore Results) if: >- github.repository_owner == 'llvm' && (github.event_name != 'pull_request' || github.event.action != 'closed')