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/wayland.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/wayland.go')
| -rw-r--r-- | internal/rosa/wayland.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/wayland.go b/internal/rosa/wayland.go index e3e711b6..4b1ec924 100644 --- a/internal/rosa/wayland.go +++ b/internal/rosa/wayland.go @@ -7,7 +7,7 @@ func (t Toolchain) newWayland() pkg.Artifact { version = "1.24.0" checksum = "JxgLiFRRGw2D3uhVw8ZeDbs3V7K_d4z_ypDog2LBqiA_5y2vVbUAk5NT6D5ozm0m" ) - return t.New("wayland-"+version, []pkg.Artifact{ + return t.New("wayland-"+version, false, []pkg.Artifact{ t.Load(Python), t.Load(Meson), t.Load(PkgConfig), @@ -50,7 +50,7 @@ func (t Toolchain) newWaylandProtocols() pkg.Artifact { version = "1.47" checksum = "B_NodZ7AQfCstcx7kgbaVjpkYOzbAQq0a4NOk-SA8bQixAE20FY3p1-6gsbPgHn9" ) - return t.New("wayland-protocols-"+version, []pkg.Artifact{ + return t.New("wayland-protocols-"+version, false, []pkg.Artifact{ t.Load(Python), t.Load(Meson), t.Load(PkgConfig), |
