Add cleanup steps to CI workflows and Makefile#227
Merged
rene merged 1 commit intolf-edge:eve-kernel-amd64-v6.12.49-genericfrom Mar 6, 2026
Merged
Conversation
To prevent GH runners from filling up we clean up all artifacts created during the build process. Signed-off-by: Paul Gaiduk <paulg@zededa.com>
rene
reviewed
Mar 6, 2026
| if: always() | ||
| run: | | ||
| make -f Makefile.eve clean | ||
| docker system prune -af |
Collaborator
There was a problem hiding this comment.
@europaul experience shown this is not enough. On EVE we came-up with the following commands for a good and effective clean up: https://github.com/lf-edge/eve/blob/master/.github/workflows/publish.yml#L233
- name: Clean
if: ${{ always() }}
run: |
make clean || :
docker system prune -f -a || :
docker rm -f $(docker ps -aq) && docker volume rm -f $(docker volume ls -q) || :
rm -rf ~/.linuxkit || :
Contributor
Author
There was a problem hiding this comment.
@rene I tested my approach - it removes all the created artifacts
Collaborator
There was a problem hiding this comment.
ok, I see you run docker kill $(BUILD_KIT_BUILDER) in the makefile, we should be good...
62283c1
into
lf-edge:eve-kernel-amd64-v6.12.49-generic
4 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To prevent GH runners from filling up we clean up all artifacts created during the build process.