This is an automated email from the ASF dual-hosted git repository.

jan pushed a commit to branch parallel-check
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 85709990f2c806d9abe686f00827c9ff8bfe6cbb
Author: Jan Lehnardt <[email protected]>
AuthorDate: Sat Dec 6 11:00:29 2025 +0100

    feat: allow parallel running of some make check sub-targets
---
 Makefile | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)

diff --git a/Makefile b/Makefile
index 8bdc05381..22e2c77e0 100644
--- a/Makefile
+++ b/Makefile
@@ -155,18 +155,12 @@ escriptize: couch-core
 # Testing
 
################################################################################
 
-
-.PHONY: check
+CHECKS="xref elixir eunit elixir-search weatherreport-test nouveau-test"
+.PHONY: check $(CHECKS)
 # target: check - Test everything
-check: ulimit -n 20480
-check: all
-       @$(MAKE) xref
-       @$(MAKE) eunit
-       @$(MAKE) mango-test
-       @$(MAKE) elixir
-       @$(MAKE) elixir-search
-       @$(MAKE) weatherreport-test
-       @$(MAKE) nouveau-test
+check: all $(CHECKS)
+       @${MAKE} mango-test
+       @${MAKE} nouveau-test
 
 ifdef apps
 SUBDIRS = $(apps)

Reply via email to