From bb61b7bed99bbe31cb2d6a3b5936ec5024446322 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Mon, 7 Oct 2024 13:09:16 +0100 Subject: [PATCH] lisa._kmod: Add overlay-backend to kernel_overlays DirCache key FIX Ensure we cache the kernel overlays based on the overlay backend, as the content of the cached folder will vary based on that. --- lisa/_kmod.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lisa/_kmod.py b/lisa/_kmod.py index 1e70d3015..df1677be7 100644 --- a/lisa/_kmod.py +++ b/lisa/_kmod.py @@ -1042,6 +1042,7 @@ class _KernelBuildEnvConf(SimpleMultiSrcConf): def _get_key(self): return ( + self.get('overlay-backend'), self.get('build-env'), self.get('build-env-settings').to_map(), sorted(self.get('make-variables', {}).items()), -- GitLab