From 398bf771de52aea21cef4f171ae69f618973e769 Mon Sep 17 00:00:00 2001 From: Gerlando Falauto Date: Mon, 3 Nov 2025 09:56:44 +0100 Subject: [PATCH] chore(ubuntu): ignore 6.14.0--nvidia Follow up on #173. Turns out 6.14.0-1012-nvidia was not an exception and the backport is here to stay, with a new 6.14.0-1013-nvidia knocking at our doors over the Halloween holidays to trick us into failure again. Let's treat it with respect and ignore it, too. --- agent_ignorelist.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent_ignorelist.yaml b/agent_ignorelist.yaml index 5bc57a9..d4ef115 100644 --- a/agent_ignorelist.yaml +++ b/agent_ignorelist.yaml @@ -108,4 +108,4 @@ ignorelist: probe_versions: [ 13.5.0, 13.6.0, 13.6.1, 13.7.0, 13.7.1, 13.7.2, 13.8.0, 13.8.1, 13.9.0, 13.9.1, 13.9.2, 14.0.0 ] probe_kinds: [ legacy_ebpf ] matcher: ubuntu_nvidia - skip_if: "{{ (version == '6.14.0') and (build == '1012') and (vendor == 'nvidia') }}" + skip_if: "{{ (version == '6.14.0') and (build|int >= 1012) and (vendor == 'nvidia') }}"