mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: esbuild: Fix test on riscv64-linux.
* gnu/packages/web.scm (esbuild)[arguments]<#:test-flags>: When target riscv64-linux, Use -short. Change-Id: I82a627820d4555260506393c3fcebebc87ecd5c3
This commit is contained in:
parent
eac939f2d3
commit
63c7a38f68
1 changed files with 4 additions and 1 deletions
|
@ -2068,7 +2068,10 @@ UTS#46.")
|
||||||
(list
|
(list
|
||||||
#:import-path "github.com/evanw/esbuild/cmd/esbuild"
|
#:import-path "github.com/evanw/esbuild/cmd/esbuild"
|
||||||
#:unpack-path "github.com/evanw/esbuild"
|
#:unpack-path "github.com/evanw/esbuild"
|
||||||
#:test-flags #~(list #$(if (target-64bit?) "-race" "-short"))
|
#:test-flags #~(list #$(if (and (target-64bit?)
|
||||||
|
;; The -race option is not supported on riscv64
|
||||||
|
(not (target-riscv64?)))
|
||||||
|
"-race" "-short"))
|
||||||
;; Test subdirectories are compiled from #:import-path.
|
;; Test subdirectories are compiled from #:import-path.
|
||||||
#:test-subdirs #~(list "../../internal/..." "../../pkg/..." )))
|
#:test-subdirs #~(list "../../internal/..." "../../pkg/..." )))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue