From 281d4a642d87a23ed62045db899ff967abf8b818 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sat, 18 Mar 2023 21:13:27 +0100 Subject: execenv: fix some cache building progress bar artifact Still one issue remaining: the last bar doesn't dissapear. Looks like a mbp issue. --- cache/repo_cache.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cache/repo_cache.go') diff --git a/cache/repo_cache.go b/cache/repo_cache.go index 9e45d1f1..19b6e266 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -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 ) -- cgit