You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes container action fails, because of "No space left on device" error. Here why:
Action "whoan/docker-build-with-cache-action@v3" works like that:
pull images from (private) registry
build new images using pulled layers (--cache-from= option)
push new images to the registry
The assumption is that most of the old layers are used in always all new builds (because deepstate-base Dockerfile and fuzzers installation scripts change hardly ever). That seeds up build processes significantly.
The problem is that sometimes, I don't know why, old layers are not used and whole build runs starts the scratch. So there are pulled old layers and new, freshly build code. And that takes too much memory.
The text was updated successfully, but these errors were encountered:
Sometimes container action fails, because of "No space left on device" error. Here why:
Action "whoan/docker-build-with-cache-action@v3" works like that:
--cache-from=
option)The assumption is that most of the old layers are used in always all new builds (because deepstate-base Dockerfile and fuzzers installation scripts change hardly ever). That seeds up build processes significantly.
The problem is that sometimes, I don't know why, old layers are not used and whole build runs starts the scratch. So there are pulled old layers and new, freshly build code. And that takes too much memory.
The text was updated successfully, but these errors were encountered: