Skip to content

[TEST] Trigger test: src/ change - #3006

Open
rashmigottipati wants to merge 6 commits into
mainfrom
test-trigger-src-change
Open

[TEST] Trigger test: src/ change#3006
rashmigottipati wants to merge 6 commits into
mainfrom
test-trigger-src-change

Conversation

@rashmigottipati

@rashmigottipati rashmigottipati commented Aug 7, 2026

Copy link
Copy Markdown
Collaborator

Test PR to verify if_changed triggers

This PR modifies a file in src/ which should TRIGGER transformers tests.

Part of verifying the if_changed include/exclude pattern in #2983

@coderabbitai

coderabbitai Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Auto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: e52430f6-db9b-41db-a9ab-0edbb65c6c8d

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@mergify mergify Bot added the two-reviews When a PR requires two reviews label Aug 7, 2026
@mergify

mergify Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

Merge Protections

🔴 2 of 2 protections blocking · waiting on 👀 reviews

Protection Waiting on
🔴 Require one maintainer review 👀 reviews
🔴 Require two reviews 👀 reviews

🔴 Require one maintainer review

Waiting for any of

  • approved-reviews-by=HDCharles
  • approved-reviews-by=brian-dellabetta
  • approved-reviews-by=dsikka
  • approved-reviews-by=kylesayrs
  • approved-reviews-by=yiliu30
This rule is failing.

All PRs must have at least one approving review from a maintainer before merging.

  • any of:
    • approved-reviews-by=HDCharles
    • approved-reviews-by=brian-dellabetta
    • approved-reviews-by=dsikka
    • approved-reviews-by=kylesayrs
    • approved-reviews-by=yiliu30
  • #changes-requested-reviews-by = 0

🔴 Require two reviews

Waiting for

  • #approved-reviews-by >= 2
This rule is failing.

PRs labelled "two-reviews" must have at least two approving reviews before merging.

  • #approved-reviews-by >= 2
  • #changes-requested-reviews-by = 0

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request refactors the Buildkite pipeline configurations for H100 and L4 GPU tests to use native conditional execution (if and if_changed) instead of custom bash scripts for detecting changes. However, the conditional logic uses null checks on build.pull_request (e.g., build.pull_request == null and build.pull_request != null). In Buildkite, build.pull_request evaluates to false when the build is not a pull request, meaning these checks will not behave as intended. You should update these conditionals to compare against false instead.

Comment thread .buildkite/gpu-tests/gpu-tests-H100.yml Outdated
- label: ":mag: Detect changes for Transformers Tests"
# Transformers tests - always run on branch pushes
- label: ":mag: Transformers Tests (branch)"
if: build.pull_request == null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Buildkite, build.pull_request evaluates to false (boolean) when the build is not a pull request, rather than null. Using == null will always evaluate to false, meaning this step will never run on branch pushes.

    if: build.pull_request == false

Comment thread .buildkite/gpu-tests/gpu-tests-H100.yml Outdated

# Transformers tests - conditional on PRs when relevant paths changed
- label: ":mag: Transformers Tests (PR)"
if: build.pull_request != null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Buildkite, build.pull_request evaluates to false (boolean) when the build is not a pull request, rather than null. Using != null will always evaluate to true, meaning this step will run on branch pushes as well.

    if: build.pull_request != false

Comment thread .buildkite/gpu-tests/gpu-tests-L4.yml Outdated
- label: ":mag: Detect changes for Transformers Tests"
# Transformers tests - always run on branch pushes
- label: ":mag: Transformers Tests (branch)"
if: build.pull_request == null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Buildkite, build.pull_request evaluates to false (boolean) when the build is not a pull request, rather than null. Using == null will always evaluate to false, meaning this step will never run on branch pushes.

    if: build.pull_request == false

Comment thread .buildkite/gpu-tests/gpu-tests-L4.yml Outdated

# Transformers tests - conditional on PRs when relevant paths changed
- label: ":mag: Transformers Tests (PR)"
if: build.pull_request != null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Buildkite, build.pull_request evaluates to false (boolean) when the build is not a pull request, rather than null. Using != null will always evaluate to true, meaning this step will run on branch pushes as well.

    if: build.pull_request != false

@github-actions

github-actions Bot commented Aug 7, 2026

Copy link
Copy Markdown

👋 Hi! Thank you for contributing to llm-compressor. Please add the ready label when the PR is ready for review.

Note: This is required to complete the testing suite, please only add the label once the PR is code complete and local testing has been performed.

@rashmigottipati
rashmigottipati force-pushed the test-trigger-src-change branch from e1be950 to c020f23 Compare August 14, 2026 03:08
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
… regex operator

Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
@rashmigottipati
rashmigottipati force-pushed the test-trigger-src-change branch from c020f23 to b1e7c13 Compare August 14, 2026 03:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

two-reviews When a PR requires two reviews

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant