Commit 67421002 authored by Robert Schmidt's avatar Robert Schmidt

Remove buildx cache after each build

parent 9d92f4f9
......@@ -507,6 +507,9 @@ class Containerize():
# Remove all intermediate build images and clean up
cmd.run(f"{self.cli} image rm ran-build:{imageTag} ran-build-asan:{imageTag}")
cmd.run(f"{self.cli} volume prune --force")
# Remove any cached artifacts: we don't use the cache for now, prevent
# out of diskspace problem
cmd.run(f"{self.cli} buildx prune --force")
# create a zip with all logs
build_log_name = f'build_log_{self.testCase_id}'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment