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/pkg/tar.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/pkg/tar.go')
| -rw-r--r-- | internal/pkg/tar.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/pkg/tar.go b/internal/pkg/tar.go index c56176b1..474df034 100644 --- a/internal/pkg/tar.go +++ b/internal/pkg/tar.go @@ -80,6 +80,9 @@ func (a *tarArtifact) Dependencies() []Artifact { return []Artifact{a.f} } +// IsExclusive returns false: decompressor and tar reader are fully sequential. +func (a *tarArtifact) IsExclusive() bool { return false } + // A DisallowedTypeflagError describes a disallowed typeflag encountered while // unpacking a tarball. type DisallowedTypeflagError byte |
