@@ -210,10 +210,15 @@ type BuildEventType int
const (
_ BuildEventType = iota
+ // BuildEventCacheIsBuilt signal that the cache is being built (aka, not skipped)
BuildEventCacheIsBuilt
+ // BuildEventRemoveLock signal that an old repo lock has been cleaned
BuildEventRemoveLock
+ // BuildEventStarted signal the beginning of a cache build for an entity
BuildEventStarted
+ // BuildEventProgress signal progress in the cache building for an entity
BuildEventProgress
+ // BuildEventFinished signal the end of a cache build for an entity
BuildEventFinished
)