mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
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@gentoo.org>
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user