mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
build: julia-build-system: Correctly disable parallel tests.
* guix/build/julia-build-system.scm: Remove phases trailing #t. [phases]{check}: Omit the --procs argument when parallel tests are to be disabled. Substract 1 from the number of parallel jobs otherwise. Co-authored-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
941f776fce
commit
73f55957cf
1 changed files with 29 additions and 22 deletions
|
@ -75,8 +75,7 @@ (define* (install #:key source inputs outputs julia-package-name
|
|||
julia-package-name
|
||||
(project.toml->name "Project.toml")))))
|
||||
(mkdir-p package-dir)
|
||||
(copy-recursively (getcwd) package-dir))
|
||||
#t)
|
||||
(copy-recursively (getcwd) package-dir)))
|
||||
|
||||
(define* (precompile #:key source inputs outputs julia-package-name
|
||||
#:allow-other-keys)
|
||||
|
@ -100,19 +99,22 @@ (define* (precompile #:key source inputs outputs julia-package-name
|
|||
;; element of DEPOT_PATH. Once the cache file exists, this hack is not
|
||||
;; needed anymore (like in the check phase). If the user install new
|
||||
;; packages, those will be installed and precompiled in the home dir.
|
||||
(string-append "pushfirst!(DEPOT_PATH, pop!(DEPOT_PATH)); using " package)))
|
||||
#t)
|
||||
(string-append "pushfirst!(DEPOT_PATH, pop!(DEPOT_PATH)); using "
|
||||
package))))
|
||||
|
||||
(define* (check #:key tests? source inputs outputs julia-package-name
|
||||
parallel-tests?
|
||||
#:allow-other-keys)
|
||||
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/"))
|
||||
(jobs (if parallel-tests?
|
||||
(number->string (parallel-job-count))
|
||||
"1")))
|
||||
(job-count (if parallel-tests?
|
||||
(parallel-job-count)
|
||||
1))
|
||||
;; The --proc argument of Julia *adds* extra processors rather than
|
||||
;; specify the exact count to use, so zero must be specified to
|
||||
;; disable parallel processing...
|
||||
(additional-procs (max 0 (1- job-count))))
|
||||
;; With a patch, SOURCE_DATE_EPOCH is honored
|
||||
(setenv "SOURCE_DATE_EPOCH" "1")
|
||||
(setenv "JULIA_DEPOT_PATH" builddir)
|
||||
|
@ -120,16 +122,21 @@ (define* (check #:key tests? source inputs outputs julia-package-name
|
|||
(string-append builddir "loadpath/" ":"
|
||||
(or (getenv "JULIA_LOAD_PATH")
|
||||
"")))
|
||||
(setenv "JULIA_CPU_THREADS" jobs)
|
||||
(setenv "JULIA_CPU_THREADS" (number->string job-count))
|
||||
(setenv "HOME" "/tmp")
|
||||
(invoke "julia" "--depwarn=yes"
|
||||
(string-append "--procs=" jobs)
|
||||
(string-append builddir "loadpath/"
|
||||
package "/test/runtests.jl"))))
|
||||
#t)
|
||||
(apply invoke "julia"
|
||||
`("--depwarn=yes"
|
||||
,@(if parallel-tests?
|
||||
;; XXX: ... but '--procs' doesn't accept 0 as a valid
|
||||
;; value, so just omit the argument entirely.
|
||||
(list (string-append "--procs="
|
||||
(number->string additional-procs)))
|
||||
'())
|
||||
,(string-append builddir "loadpath/"
|
||||
package "/test/runtests.jl"))))))
|
||||
|
||||
(define* (link-depot #:key source inputs outputs julia-package-name julia-package-uuid
|
||||
#:allow-other-keys)
|
||||
(define* (link-depot #:key source inputs outputs
|
||||
julia-package-name julia-package-uuid #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(package-name (or
|
||||
julia-package-name
|
||||
|
@ -144,10 +151,11 @@ (define* (link-depot #:key source inputs outputs julia-package-name julia-packag
|
|||
;; When installing a package, julia looks first at in the JULIA_DEPOT_PATH
|
||||
;; for a path like packages/PACKAGE/XXXX
|
||||
;; Where XXXX is a slug encoding the package UUID and SHA1 of the files
|
||||
;; Here we create a link with the correct path to enable julia to find the package
|
||||
;; Here we create a link with the correct path to enable julia to find the
|
||||
;; package
|
||||
(mkdir-p (string-append out "/share/julia/packages/" package-name))
|
||||
(symlink package-dir (string-append out "/share/julia/packages/" package-name "/" slug)))
|
||||
#t)
|
||||
(symlink package-dir (string-append out "/share/julia/packages/"
|
||||
package-name "/" slug))))
|
||||
|
||||
(define (julia-create-package-toml outputs source
|
||||
name uuid version
|
||||
|
@ -173,8 +181,7 @@ (define (julia-create-package-toml outputs source
|
|||
(display (string-append (car (car dep)) " = \"" (cdr (car dep)) "\"\n")
|
||||
f))
|
||||
deps))
|
||||
(close-port f))
|
||||
#t)
|
||||
(close-port f)))
|
||||
|
||||
(define %standard-phases
|
||||
(modify-phases gnu:%standard-phases
|
||||
|
|
Loading…
Reference in a new issue