[Github] Only look at previous commit for MacOS Premerge#164483
Merged
boomanaiden154 merged 1 commit intollvm:mainfrom Oct 21, 2025
Merged
[Github] Only look at previous commit for MacOS Premerge#164483boomanaiden154 merged 1 commit intollvm:mainfrom
boomanaiden154 merged 1 commit intollvm:mainfrom
Conversation
Otherwise we're looking for a commit that does not exist given the fetch depth. Fixes llvm#164430.
Member
|
@llvm/pr-subscribers-github-workflow Author: Aiden Grossman (boomanaiden154) ChangesOtherwise we're looking for a commit that does not exist given the fetch depth. Fixes #164430. Full diff: https://github.com/llvm/llvm-project/pull/164483.diff 1 Files Affected:
diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml
index 951fc16bed215..6303a119750b5 100644
--- a/.github/workflows/premerge.yaml
+++ b/.github/workflows/premerge.yaml
@@ -193,7 +193,7 @@ jobs:
uses: llvm/actions/install-ninja@main
- name: Build and Test
run: |
- source <(git diff --name-only HEAD~2..HEAD | python3 .ci/compute_projects.py)
+ source <(git diff --name-only HEAD~1...HEAD | python3 .ci/compute_projects.py)
if [[ "${projects_to_build}" == "" ]]; then
echo "No projects to build"
|
tstellar
approved these changes
Oct 21, 2025
Contributor
Author
|
/cherry-pick 288ef04 |
Member
|
/pull-request #164497 |
c-rhodes
pushed a commit
to llvmbot/llvm-project
that referenced
this pull request
Oct 27, 2025
Otherwise we're looking for a commit that does not exist given the fetch depth. Fixes llvm#164430. (cherry picked from commit 288ef04)
Lukacma
pushed a commit
to Lukacma/llvm-project
that referenced
this pull request
Oct 29, 2025
Otherwise we're looking for a commit that does not exist given the fetch depth. Fixes llvm#164430.
aokblast
pushed a commit
to aokblast/llvm-project
that referenced
this pull request
Oct 30, 2025
Otherwise we're looking for a commit that does not exist given the fetch depth. Fixes llvm#164430.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Otherwise we're looking for a commit that does not exist given the fetch depth.
Fixes #164430.