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 <juergh@proton.me>
less-recipients
Juerg Haefliger 11 months ago
parent 08a27a5456
commit 700cf66c7b

@ -717,6 +717,12 @@ class AutopkgtestPolicy(BasePolicy):
# to trigger anything # to trigger anything
return [] 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 # Debian doesn't have linux-meta, but Ubuntu does
# for linux themselves we don't want to trigger tests -- these should # for linux themselves we don't want to trigger tests -- these should
# all come from linux-meta*. A new kernel ABI without a corresponding # all come from linux-meta*. A new kernel ABI without a corresponding

Loading…
Cancel
Save