summaryrefslogtreecommitdiff
path: root/guix/build
diff options
context:
space:
mode:
authorzimoun <zimon.toutoune@gmail.com>2021-11-25 02:24:43 +0100
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-11-25 01:04:17 -0500
commit905b090582e5c03ef4fb183fda0a1ababf5cb284 (patch)
treec8000bce2789ac305a5483317156586051b69990 /guix/build
parent6312c68f706eff5f950adcfe73d6d2cb6b757118 (diff)
downloadguix-patches-905b090582e5c03ef4fb183fda0a1ababf5cb284.tar
guix-patches-905b090582e5c03ef4fb183fda0a1ababf5cb284.tar.gz
build: julia-build-system: Add support for parallel tests.
The tests are defined by the script 'test/runtests.jl' from packages and the parallelism depends on the implementation of this script. Therefore, 'julia' is launched using local worker processes accordingly with 'parallel?'. * guix/build/julia-build-system.scm (check): Set the JULIA_CPU_THREADS environment variable and invoke julia with the '--procs' option. * guix/build-system/julia.scm (julia-build)[parallel-tests?]: New argument. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'guix/build')
-rw-r--r--guix/build/julia-build-system.scm9
1 files changed, 8 insertions, 1 deletions
diff --git a/guix/build/julia-build-system.scm b/guix/build/julia-build-system.scm
index 41c69665c6..f0dc419c17 100644
--- a/guix/build/julia-build-system.scm
+++ b/guix/build/julia-build-system.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019, 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
;;; Copyright © 2021 Jean-Baptiste Volatier <jbv@pm.me>
+;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -103,11 +104,15 @@ Project.toml)."
#t)
(define* (check #:key tests? source inputs outputs julia-package-name
+ parallel-tests?
#:allow-other-keys)
(when tests?
(let* ((out (assoc-ref outputs "out"))
(package (or julia-package-name (project.toml->name "Project.toml")))
- (builddir (string-append out "/share/julia/")))
+ (builddir (string-append out "/share/julia/"))
+ (jobs (if parallel-tests?
+ (number->string (parallel-job-count))
+ "1")))
;; With a patch, SOURCE_DATE_EPOCH is honored
(setenv "SOURCE_DATE_EPOCH" "1")
(setenv "JULIA_DEPOT_PATH" builddir)
@@ -115,8 +120,10 @@ Project.toml)."
(string-append builddir "loadpath/" ":"
(or (getenv "JULIA_LOAD_PATH")
"")))
+ (setenv "JULIA_CPU_THREADS" jobs)
(setenv "HOME" "/tmp")
(invoke "julia" "--depwarn=yes"
+ (string-append "--procs=" jobs)
(string-append builddir "loadpath/"
package "/test/runtests.jl"))))
#t)