GH-125498: Update JIT builds to use LLVM 19 and preserve_none (GH-125499)

This commit is contained in:
Savannah Ostrowski 2024-10-30 12:03:31 -07:00 committed by GitHub
parent 597d814334
commit c29bbe2101
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 69 additions and 78 deletions

View file

@ -8,7 +8,7 @@ import shlex
import subprocess
import typing
_LLVM_VERSION = 18
_LLVM_VERSION = 19
_LLVM_VERSION_PATTERN = re.compile(rf"version\s+{_LLVM_VERSION}\.\d+\.\d+\S*\s+")
_P = typing.ParamSpec("_P")