Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] common/build-style/: enable running tests in parallel
@ 2021-07-05  1:29 Logarithmus
  2021-07-05 23:37 ` [RFC] " Logarithmus
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Logarithmus @ 2021-07-05  1:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 402 bytes --]

There is a new pull request by Logarithmus against master on the void-packages repository

https://github.com/Logarithmus/void-packages common-parallel-tests
https://github.com/void-linux/void-packages/pull/31811

common/build-style/: enable running tests in parallel
What do you think? Are there any caveats?


A patch file from https://github.com/void-linux/void-packages/pull/31811.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-common-parallel-tests-31811.patch --]
[-- Type: text/x-diff, Size: 2620 bytes --]

From c9297fd9de1b5d94bfc1079d022a845c28ee31f0 Mon Sep 17 00:00:00 2001
From: Artur Sinila <freesoftware@logarithmus.dev>
Date: Mon, 5 Jul 2021 03:44:08 +0300
Subject: [PATCH] common/build-style/: enable running tests in parallel

---
 common/build-style/cmake.sh         | 2 +-
 common/build-style/configure.sh     | 2 +-
 common/build-style/gnu-configure.sh | 2 +-
 common/build-style/gnu-makefile.sh  | 2 +-
 common/build-style/perl-module.sh   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/common/build-style/cmake.sh b/common/build-style/cmake.sh
index a7627e7dcf21..7f1e550b470b 100644
--- a/common/build-style/cmake.sh
+++ b/common/build-style/cmake.sh
@@ -113,7 +113,7 @@ do_check() {
 
 	: ${make_check_target:=test}
 
-	${make_cmd} ${make_check_args} ${make_check_target}
+	${make_cmd} ${makejobs} ${make_check_args} ${make_check_target}
 }
 
 do_install() {
diff --git a/common/build-style/configure.sh b/common/build-style/configure.sh
index 0963fc347934..1941b6d3ac01 100644
--- a/common/build-style/configure.sh
+++ b/common/build-style/configure.sh
@@ -29,7 +29,7 @@ do_check() {
 	: ${make_cmd:=make}
 	: ${make_check_target:=check}
 
-	${make_cmd} ${make_check_args} ${make_check_target}
+	${make_cmd} ${makejobs} ${make_check_args} ${make_check_target}
 }
 
 do_install() {
diff --git a/common/build-style/gnu-configure.sh b/common/build-style/gnu-configure.sh
index 8121136cd121..a6a95c83ed4c 100644
--- a/common/build-style/gnu-configure.sh
+++ b/common/build-style/gnu-configure.sh
@@ -30,7 +30,7 @@ do_check() {
 	: ${make_cmd:=make}
 	: ${make_check_target:=check}
 
-	${make_cmd} ${make_check_args} ${make_check_target}
+	${make_cmd} ${makejobs} ${make_check_args} ${make_check_target}
 }
 
 do_install() {
diff --git a/common/build-style/gnu-makefile.sh b/common/build-style/gnu-makefile.sh
index d7ea148fc483..fca1cc8b4712 100644
--- a/common/build-style/gnu-makefile.sh
+++ b/common/build-style/gnu-makefile.sh
@@ -30,7 +30,7 @@ do_check() {
 	: ${make_cmd:=make}
 	: ${make_check_target:=check}
 
-	${make_cmd} ${make_check_args} ${make_check_target}
+	${make_cmd} ${makejobs} ${make_check_args} ${make_check_target}
 }
 
 do_install() {
diff --git a/common/build-style/perl-module.sh b/common/build-style/perl-module.sh
index 5b0f0ccde825..1173ca863009 100644
--- a/common/build-style/perl-module.sh
+++ b/common/build-style/perl-module.sh
@@ -77,7 +77,7 @@ do_check() {
 	: ${make_cmd:=make}
 	: ${make_check_target:=test}
 
-	${make_cmd} ${make_check_args} ${make_check_target}
+	${make_cmd} ${makejobs} ${make_check_args} ${make_check_target}
 }
 
 do_install() {

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2022-06-08  2:11 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-05  1:29 [PR PATCH] common/build-style/: enable running tests in parallel Logarithmus
2021-07-05 23:37 ` [RFC] " Logarithmus
2021-07-05 23:46 ` ericonr
2021-07-06  1:51 ` q66
2021-07-14 14:51 ` [PR PATCH] [Updated] " Logarithmus
2021-07-14 15:09 ` Logarithmus
2021-07-14 15:09 ` Chocimier
2021-07-14 15:09 ` Logarithmus
2021-07-14 15:10 ` [PR PATCH] [Updated] " Logarithmus
2021-07-14 15:12 ` Logarithmus
2021-07-14 15:24 ` Chocimier
2021-07-14 15:24 ` [PR REVIEW] " sgn
2021-07-14 15:29 ` sgn
2021-07-24 12:01 ` Logarithmus
2021-07-24 12:04 ` Logarithmus
2021-07-24 12:16 ` sgn
2021-07-24 12:30 ` [PR PATCH] [Updated] " Logarithmus
2021-07-24 12:31 ` Logarithmus
2021-07-25 19:53 ` [PR REVIEW] " Logarithmus
2021-07-25 19:54 ` Logarithmus
2021-07-30 20:43 ` Chocimier
2022-05-24  2:13 ` github-actions
2022-06-08  2:11 ` [PR PATCH] [Closed]: " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).