All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ref-manual: tasks: do_cleanall: mention it is not allowed with a shared DL_DIR
@ 2024-02-19 15:55 Luca Ceresoli
  2024-02-19 16:12 ` [docs] " Quentin Schulz
  0 siblings, 1 reply; 5+ messages in thread
From: Luca Ceresoli @ 2024-02-19 15:55 UTC (permalink / raw)
  To: docs; +Cc: Luca Ceresoli

do_cleanall can produce failures if using a shared download directory. This
is why it is forbidden when writing tests that will run on the autobuilders
(https://docs.yoctoproject.org/test-manual/intro.html?highlight=cleanall#considerations-when-writing-tests).

Reported-by: Sam Liddicott
Link: https://bootlin.com/blog/yocto-sharing-the-sstate-cache-and-download-directories/#comment-2650335
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
---
 documentation/ref-manual/tasks.rst | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/documentation/ref-manual/tasks.rst b/documentation/ref-manual/tasks.rst
index 0db960b22f80..c754eb15514b 100644
--- a/documentation/ref-manual/tasks.rst
+++ b/documentation/ref-manual/tasks.rst
@@ -474,6 +474,19 @@ Typically, you would not normally use the :ref:`ref-tasks-cleanall` task. Do so
 if you want to start fresh with the :ref:`ref-tasks-fetch`
 task.
 
+.. note::
+
+   Never run the :ref:`ref-tasks-cleanall` task if your :term:`DL_DIR` is
+   shared. This would break in this scenario::
+
+      dir1$ bitbake <recipe> -c fetch
+      dir2$ bitbake <recipe> -c cleanall
+      dir1$ bitbake <recipe> -c unpack
+
+   because before step 3 in dir1 there is a stamp file for the
+   :ref:`ref-tasks-fetch` task, so the unpack task will try to extract the
+   downloaded archive and fail as it has been deleted in step 2.
+
 .. _ref-tasks-cleansstate:
 
 ``do_cleansstate``
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-02-20 10:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-19 15:55 [PATCH] ref-manual: tasks: do_cleanall: mention it is not allowed with a shared DL_DIR Luca Ceresoli
2024-02-19 16:12 ` [docs] " Quentin Schulz
2024-02-20  7:58   ` Luca Ceresoli
2024-02-20  9:01     ` Richard Purdie
2024-02-20 10:20       ` Quentin Schulz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.