diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-01-26 19:52:59 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-01-26 19:52:59 +0900 |
| commit | 68b7d41c65bcec698a4c80fbfee2a359c6c593c3 (patch) | |
| tree | 1fcf1f8faf9574672f360ae636f1880b7adabbfc | |
| parent | e48f303e3862c3403489cda7ce7a4779a1251f7b (diff) | |
internal/rosa: parallel autoconf tests
These take forever and run sequentially by default for some reason.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | internal/rosa/gnu.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/rosa/gnu.go b/internal/rosa/gnu.go index fbee922b..0da7ea8b 100644 --- a/internal/rosa/gnu.go +++ b/internal/rosa/gnu.go @@ -64,7 +64,10 @@ cd "$(mktemp -d)" /usr/src/autoconf/configure \ --prefix=/system \ --build="${ROSA_TRIPLE}" -make "-j$(nproc)" check +make \ + "-j$(nproc)" \ + TESTSUITEFLAGS="-j$(nproc)" \ + check make DESTDIR=/work install `, pkg.Path(AbsUsrSrc.Append("autoconf"), false, pkg.NewHTTPGetTar( nil, |
