[llvm] [Github][CI] Name Premerge Jobs Experimental (PR #128227)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 21:47:02 PST 2025
https://github.com/boomanaiden154 updated https://github.com/llvm/llvm-project/pull/128227
>From 6a63c9ac60cf3e92fabeb6c4e69e92727963f651 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Fri, 21 Feb 2025 20:46:40 +0000
Subject: [PATCH 1/2] [Github][CI] Name Premerge Jobs Experimental
As discussed on Discourse (https://discourse.llvm.org/t/googles-plan-for-the-llvm-presubmit-infrastructure/78940/8),
this patch renames the premerge jobs to include experimental in them to
hopefully better signal that these are still a prototype. This patch
does not mark the MacOS job as experimental as that is being used in
production on the release branch.
---
.github/workflows/premerge.yaml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index 2d366028c2337..c06631c458fe1 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -25,6 +25,7 @@ concurrency:
jobs:
premerge-checks-linux:
+ name: Linux Premerge Checks (Experimental)
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
@@ -83,6 +84,7 @@ jobs:
./.ci/monolithic-linux.sh "$(echo ${linux_projects} | tr ' ' ';')" "$(echo ${linux_check_targets})" "$(echo ${linux_runtimes} | tr ' ' ';')" "$(echo ${linux_runtime_check_targets})"
premerge-checks-windows:
+ name: Windows Premerge Checks (Experimental)
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
@@ -143,6 +145,7 @@ jobs:
bash .ci/monolithic-windows.sh "${{ steps.vars.outputs.windows-projects }}" "${{ steps.vars.outputs.windows-check-targets }}"
premerge-check-macos:
+ name: MacOS Premerge Checks
runs-on: macos-14
if: >-
github.repository_owner == 'llvm' &&
>From 24519a5a4d28d4ceb32ecda8a17b39fd0afee524 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Sat, 22 Feb 2025 05:46:52 +0000
Subject: [PATCH 2/2] feedback
---
.github/workflows/premerge.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index c06631c458fe1..c488421d37450 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -25,7 +25,7 @@ concurrency:
jobs:
premerge-checks-linux:
- name: Linux Premerge Checks (Experimental)
+ name: Linux Premerge Checks (Test Only - Please Ignore Results)
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
@@ -84,7 +84,7 @@ jobs:
./.ci/monolithic-linux.sh "$(echo ${linux_projects} | tr ' ' ';')" "$(echo ${linux_check_targets})" "$(echo ${linux_runtimes} | tr ' ' ';')" "$(echo ${linux_runtime_check_targets})"
premerge-checks-windows:
- name: Windows Premerge Checks (Experimental)
+ name: Windows Premerge Checks (Test Only - Please Ignore Results)
if: >-
github.repository_owner == 'llvm' &&
(github.event_name != 'pull_request' || github.event.action != 'closed')
More information about the llvm-commits
mailing list