[llvm] [Github][CI] Enable New Premerge on PRs (PR #127894)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 13:05:57 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Aiden Grossman (boomanaiden154)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/127894.diff
1 Files Affected:
- (modified) .github/workflows/premerge.yaml (-2)
``````````diff
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'
``````````
</details>
https://github.com/llvm/llvm-project/pull/127894
More information about the llvm-commits
mailing list