From 700cf66c7b283822d2c2744290cd0c40ccc210d4 Mon Sep 17 00:00:00 2001 From: Juerg Haefliger Date: Tue, 20 Feb 2024 10:26:19 +0100 Subject: [PATCH] autopkgtest: Don't run tests on linux-meta-raspi The raspi kernel doesn't support EFI and won't boot in OpenStack, so don't try to run tests on it. Signed-off-by: Juerg Haefliger --- britney2/policies/autopkgtest.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/britney2/policies/autopkgtest.py b/britney2/policies/autopkgtest.py index c5098d6..cb5381d 100644 --- a/britney2/policies/autopkgtest.py +++ b/britney2/policies/autopkgtest.py @@ -717,6 +717,12 @@ class AutopkgtestPolicy(BasePolicy): # to trigger anything return [] + # Debian doesn't have linux-meta, but Ubuntu does + # The raspi kernel can't be tested with autopkgtest. It doesn't support EFI + # and won't boot in OpenStack. + if src.startswith('linux-meta-raspi'): + return [] + # Debian doesn't have linux-meta, but Ubuntu does # for linux themselves we don't want to trigger tests -- these should # all come from linux-meta*. A new kernel ABI without a corresponding