areusch opened a new issue, #11195: URL: https://github.com/apache/tvm/issues/11195
Seeing strange build failures due to missing docker images: [1.](https://ci.tlcpack.ai/blue/organizations/jenkins/tvm/detail/PR-11170/1/pipeline/61/) ``` [2022-04-28T21:00:02.003Z] Step 22/76 : RUN bash /install/ubuntu_install_java.sh [2022-04-28T21:00:02.569Z] No such image: sha256:784a469a44d1bddcaf168d978bee1c0ee32de4a157142e77598083a72cf44501 ``` [2.](https://ci.tlcpack.ai/blue/organizations/jenkins/tvm/detail/PR-11148/8/pipeline/) ``` [2022-05-02T17:00:23.338Z] unknown parent image ID sha256:1e211c29ce68f4552a3e76cc8151456ea41f58740ee3c0fcb5a3cd35175fcd6d [2022-05-02T17:00:23.338Z] ERROR: docker build failed. ``` Hypothesis is that periodically, the CI workers run `docker system prune` to remove stale CI images and ensure PRs don't run out of disk space on the executor nodes. This prune nukes the in-progress docker build containers if run at just the right time and prevents the builds from succeeding. Proposed workaround is to only prune images older than e.g. 20m, which can be done with a flag to docker system prune. cc @konturn @driazati -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
