From: Ilya Dryomov Date: Tue, 3 Mar 2026 12:46:29 +0000 (+0100) Subject: ceph-pull-requests: don't skip qa-only PRs X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=88f97b3576ad0926c493ca00e707dd15993c282c;p=ceph-build.git ceph-pull-requests: don't skip qa-only PRs This is a partial revert of commit 78849bdf7d0d ("ceph-pull-requests: Skip qa-only PRs"). Unfortunately "make check" needs to be run even on qa-only PRs at least once to get linter coverage for files under qa/. Revert to running "make check" on qa-only PRs for ceph-pull-requests but continue skipping it for ceph-pull-requests-arm64. Signed-off-by: Ilya Dryomov --- diff --git a/ceph-pull-requests/build/build b/ceph-pull-requests/build/build index 8aa7402e..5d71edb4 100644 --- a/ceph-pull-requests/build/build +++ b/ceph-pull-requests/build/build @@ -3,9 +3,8 @@ 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." +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." exit 0 fi