From 5e27b37c7f3b536c515fa7590594942ab86d1b29 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Wed, 4 Feb 2026 12:14:27 +0530 Subject: [PATCH] ceph-pr-api: don't ignore qa/ folder changes API tests are run from qa/ folder so let's not ignore those changes Signed-off-by: Nizamudeen A --- ceph-pr-api/build/build | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ceph-pr-api/build/build b/ceph-pr-api/build/build index 761f387e..44b81dcd 100644 --- a/ceph-pr-api/build/build +++ b/ceph-pr-api/build/build @@ -7,9 +7,8 @@ fi docs_pr_only container_pr_only gha_pr_only -qa_pr_only -if [[ "$DOCS_ONLY" = true || "$CONTAINER_ONLY" = true || "$GHA_ONLY" == true || "$QA_ONLY" == true ]]; then - echo "Only the doc/, container/, qa/ or .github/ dir changed. No need to run make check or API tests." +if [[ "$DOCS_ONLY" = true || "$CONTAINER_ONLY" = true || "$GHA_ONLY" == true ]]; then + echo "Only the doc/, container/ or .github/ dir changed. No need to run make check or API tests." mkdir -p $WORKSPACE/build/out echo "File created to avoid Jenkins' Artifact Archiving plugin from hanging" > $WORKSPACE/build/out/mgr.foo.log exit 0 -- 2.47.3