Skip to content
Merged
Show file tree
Hide file tree
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 .ci/metrics/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
# 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).
# Each value is a map to link the github job name to the corresponding metric
# 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",
}
}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/premerge.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: LLVM Premerge Checks
name: CI Checks

permissions:
contents: read
Expand All @@ -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')
Expand Down Expand Up @@ -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')
Expand Down
Loading