]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-pull-requests: don't skip qa-only PRs 2547/head
authorIlya Dryomov <idryomov@gmail.com>
Tue, 3 Mar 2026 12:46:29 +0000 (13:46 +0100)
committerIlya Dryomov <idryomov@gmail.com>
Tue, 3 Mar 2026 12:53:45 +0000 (13:53 +0100)
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 <idryomov@gmail.com>
ceph-pull-requests/build/build

index 8aa7402e2b1d5482c2c766e510fa9d2438370d18..5d71edb4516bbdade8191c7f4735ecea2a9a59d1 100644 (file)
@@ -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