diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-01-27 01:16:21 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-01-27 01:23:50 +0900 |
| commit | eb67e5e0a8821058fed782bf9c90b45c793036a5 (patch) | |
| tree | 7c115251881b0832309967404206a417cfb332c7 /internal/rosa/perl.go | |
| parent | 948afe33e5006f7e37e24bbc69be2e527a07ddb3 (diff) | |
internal/pkg: exclusive artifacts
This alleviates scheduler overhead when curing many artifacts.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/perl.go')
| -rw-r--r-- | internal/rosa/perl.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rosa/perl.go b/internal/rosa/perl.go index 77e9d67d..56756042 100644 --- a/internal/rosa/perl.go +++ b/internal/rosa/perl.go @@ -7,7 +7,7 @@ func (t Toolchain) newPerl() pkg.Artifact { version = "5.42.0" checksum = "2KR7Jbpk-ZVn1a30LQRwbgUvg2AXlPQZfzrqCr31qD5-yEsTwVQ_W76eZH-EdxM9" ) - return t.New("perl-"+version, []pkg.Artifact{ + return t.New("perl-"+version, false, []pkg.Artifact{ t.Load(Make), }, nil, nil, ` chmod -R +w /usr/src/perl && cd /usr/src/perl |
