Skip to content

Commit

Permalink
ci: bump minimum clang to 17 and add 18 to x86-64
Browse files Browse the repository at this point in the history
Use clang-17 now that it is stable. To catch issues in clang dev
version, add clang-18 variant for llvm build on x86-64.

Signed-off-by: Andrii Nakryiko <[email protected]>
  • Loading branch information
anakryiko committed Dec 11, 2023
1 parent 09d657e commit 55ed16d
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/scripts/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_tests(config):
"runs_on": [],
"arch": Arch.X86_64.value,
"toolchain": "gcc",
"llvm-version": "16",
"llvm-version": "17",
"run_veristat": True,
"parallel_tests": True,
},
Expand All @@ -71,14 +71,21 @@ def get_tests(config):
"runs_on": [],
"arch": Arch.X86_64.value,
"toolchain": "llvm",
"llvm-version": "16",
"llvm-version": "17",
},
{
"kernel": "LATEST",
"runs_on": [],
"arch": Arch.X86_64.value,
"toolchain": "llvm",
"llvm-version": "18",
},
{
"kernel": "LATEST",
"runs_on": [],
"arch": Arch.AARCH64.value,
"toolchain": "gcc",
"llvm-version": "16",
"llvm-version": "17",
},
# {
# "kernel": "LATEST",
Expand All @@ -92,7 +99,7 @@ def get_tests(config):
"runs_on": [],
"arch": Arch.S390X.value,
"toolchain": "gcc",
"llvm-version": "16",
"llvm-version": "17",
},
]
self_hosted_repos = [
Expand Down

0 comments on commit 55ed16d

Please sign in to comment.