commit:     a84bbdd30ab53bfca2ccdbe131cd5183f133b4e2
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 10 12:28:41 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 09:12:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84bbdd3

eclass/dune.eclass: inherit multiprocessing

in order to run up to makeopts_jobs number of jobs
in dune_src_compile and dune_src_test

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 eclass/dune.eclass | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/eclass/dune.eclass b/eclass/dune.eclass
index 9b5c469dcadf..522dc2a8b52f 100644
--- a/eclass/dune.eclass
+++ b/eclass/dune.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: dune.eclass
@@ -26,6 +26,8 @@ case ${EAPI:-0} in
        *) die "${ECLASS}: EAPI ${EAPI} not supported" ;;
 esac
 
+inherit multiprocessing
+
 # Do not complain about CFLAGS etc since ml projects do not use them.
 QA_FLAGS_IGNORED='.*'
 
@@ -44,13 +46,13 @@ esac
 
 dune_src_compile() {
        ebegin "Building"
-       dune build @install --display short --profile release
+       dune build @install -j $(makeopts_jobs) --profile release
        eend $? || die
 }
 
 dune_src_test() {
        ebegin "Testing"
-       dune runtest --display short --profile release
+       dune runtest -j $(makeopts_jobs) --profile release
        eend $? || die
 }
 

Reply via email to