[llvm] [CI][Github] Remove test naming from premerge jobs (PR #141527)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Mon May 26 13:12:46 PDT 2025
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/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.
>From 34133b000d16843dc95ef64a485c028677a0eeac Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Mon, 26 May 2025 20:10:32 +0000
Subject: [PATCH] [CI][Github] Remove test naming from premerge jobs
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.
---
.ci/metrics/metrics.py | 4 ++--
.github/workflows/premerge.yaml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.ci/metrics/metrics.py b/.ci/metrics/metrics.py
index 1537bad2b0e66..40d192c6def23 100644
--- a/.ci/metrics/metrics.py
+++ b/.ci/metrics/metrics.py
@@ -29,8 +29,8 @@
# name.
GITHUB_JOB_TO_TRACK = {
"github_llvm_premerge_checks": {
- "Build and Test Linux (Test Only - Please Ignore Results)": "premerge_linux",
- "Build and Test Windows (Test Only - Please Ignore Results)": "premerge_windows",
+ "Build and Test Linux": "premerge_linux",
+ "Build and Test Windows": "premerge_windows",
}
}
diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index 3d29f220d18a8..709b6d03d94c3 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -24,7 +24,7 @@ concurrency:
jobs:
premerge-checks-linux:
- name: Build and Test Linux (Test Only - Please Ignore Results)
+ name: Build and Test Linux
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
@@ -70,7 +70,7 @@ jobs:
include-hidden-files: 'true'
premerge-checks-windows:
- name: Build and Test Windows (Test Only - Please Ignore Results)
+ name: Build and Test Windows
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
More information about the llvm-commits
mailing list