[llvm] [Github][CI] Enable New Premerge on PRs (PR #127894)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 13:05:18 PST 2025
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/127894
This patch gets rid of the file restriction for running the new premerge Github workflow on PRs. This will cause the jobs to be run on all the PRs. Currently the jobs will succeed regardless of build/test failure results. This will let us test the new infra hopefully without too much disruption before eventually letting jobs fail when builds/tests fail and deprecating the existing premerge system.
This is part of the launch plan as outlined in
https://discourse.llvm.org/t/googles-plan-for-the-llvm-presubmit-infrastructure/78940.
>From 0ac8a49f3f31af7ce968c46cc1be035b50b7f5f2 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Wed, 19 Feb 2025 21:01:45 +0000
Subject: [PATCH] [Github][CI] Enable New Premerge on PRs
This patch gets rid of the file restriction for running the new premerge
Github workflow on PRs. This will cause the jobs to be run on all the PRs.
Currently the jobs will succeed regardless of build/test failure results.
This will let us test the new infra hopefully without too much disruption
before eventually letting jobs fail when builds/tests fail and deprecating
the existing premerge system.
This is part of the launch plan as outlined in
https://discourse.llvm.org/t/googles-plan-for-the-llvm-presubmit-infrastructure/78940.
---
.github/workflows/premerge.yaml | 2 --
1 file changed, 2 deletions(-)
diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index 49753c0746cbe..2d366028c2337 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -14,8 +14,6 @@ on:
# do this is that it allows us to take advantage of concurrency groups
# to cancel in progress CI jobs whenever the PR is closed.
- closed
- paths:
- - .github/workflows/premerge.yaml
push:
branches:
- 'main'
More information about the llvm-commits
mailing list