Skip to content

Commit 3321aae

Browse files
committed
matrix: bump LLVM version from 18 to 20
Signed-off-by: Ihor Solodrai <[email protected]>
1 parent c36ce33 commit 3321aae

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/scripts/matrix.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/usr/bin/env python3
22

3-
import os
43
import dataclasses
54
import json
6-
import requests
5+
import os
76

87
from enum import Enum
9-
from typing import Any, Dict, List, Final, Set, Union, Optional
8+
from typing import Any, Dict, Final, List, Optional, Set, Union
9+
10+
import requests
1011

1112
MANAGED_OWNER: Final[str] = "kernel-patches"
1213
MANAGED_REPOS: Final[Set[str]] = {
@@ -17,7 +18,7 @@
1718
DEFAULT_SELF_HOSTED_RUNNER_TAGS: Final[List[str]] = ["self-hosted", "docker-noble-main"]
1819
DEFAULT_GITHUB_HOSTED_RUNNER: Final[str] = "ubuntu-24.04"
1920
DEFAULT_GCC_VERSION: Final[int] = 14
20-
DEFAULT_LLVM_VERSION: Final[int] = 18
21+
DEFAULT_LLVM_VERSION: Final[int] = 20
2122

2223
RUNNERS_BUSY_THRESHOLD: Final[float] = 0.8
2324

ci/vmtest/configs/DENYLIST

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ core_reloc/enum64val
55
core_reloc/size___diff_sz
66
core_reloc/type_based___diff_sz
77
test_ima # All of CI is broken on it following 6.3-rc1 merge
8-
98
lwt_reroute # crashes kernel after netnext merge from 2ab1efad60ad "net/sched: cls_api: complement tcf_tfilter_dump_policy"
109
tc_links_ingress # started failing after net-next merge from 2ab1efad60ad "net/sched: cls_api: complement tcf_tfilter_dump_policy"
1110
xdp_bonding/xdp_bonding_features # started failing after net merge from 359e54a93ab4 "l2tp: pass correct message length to ip6_append_data"
@@ -14,3 +13,4 @@ migrate_reuseport/IPv4 TCP_NEW_SYN_RECV reqsk_timer_handler # flaky, under inves
1413
migrate_reuseport/IPv6 TCP_NEW_SYN_RECV reqsk_timer_handler # flaky, under investigation
1514
connect_force_port # unreliably fails
1615
sockmap_ktls/sockmap_ktls disconnect_after_delete* # https://lore.kernel.org/bpf/[email protected]/
16+
verif_scale_pyperf600 # llvm 20 generates code that fails verification
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
arena_spin_lock # llvm 20 generates code that fails verification
2+
verifier_arena/basic_alloc2

0 commit comments

Comments
 (0)