Skip to content

Commit deedc8a

Browse files
[CI][Github] Remove test naming from premerge jobs (#141527)
This patch removes the "test only please ignore" tagline from the premerge job names. Now that we are looking to sunset the old infrastructure pretty soon and the new infrastructure is reporting errors, we want people to actually pay attention to the failures and report anything erroneous.
1 parent 5fc3e76 commit deedc8a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/metrics/metrics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
# name.
3030
GITHUB_JOB_TO_TRACK = {
3131
"github_llvm_premerge_checks": {
32-
"Build and Test Linux (Test Only - Please Ignore Results)": "premerge_linux",
33-
"Build and Test Windows (Test Only - Please Ignore Results)": "premerge_windows",
32+
"Build and Test Linux": "premerge_linux",
33+
"Build and Test Windows": "premerge_windows",
3434
}
3535
}
3636

.github/workflows/premerge.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ concurrency:
2424

2525
jobs:
2626
premerge-checks-linux:
27-
name: Build and Test Linux (Test Only - Please Ignore Results)
27+
name: Build and Test Linux
2828
if: >-
2929
github.repository_owner == 'llvm' &&
3030
(github.event_name != 'pull_request' || github.event.action != 'closed')
@@ -70,7 +70,7 @@ jobs:
7070
include-hidden-files: 'true'
7171

7272
premerge-checks-windows:
73-
name: Build and Test Windows (Test Only - Please Ignore Results)
73+
name: Build and Test Windows
7474
if: >-
7575
github.repository_owner == 'llvm' &&
7676
(github.event_name != 'pull_request' || github.event.action != 'closed')

0 commit comments

Comments
 (0)