Skip to content

Commit 5406969

Browse files
authored
Merge pull request #105 from mcbarton/add-llvm-19
[ci] Add llvm 19
2 parents ad880c4 + 0f170bd commit 5406969

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
include:
24+
- name: ubu22-x86-gcc12-clang-repl-19-cppyy
25+
os: ubuntu-22.04
26+
compiler: gcc-12
27+
clang-runtime: '19'
28+
cling: Off
29+
cppyy: On
2430
- name: ubu22-x86-gcc12-clang-repl-18-cppyy
2531
os: ubuntu-22.04
2632
compiler: gcc-12
@@ -66,6 +72,12 @@ jobs:
6672
# cling: On
6773
# cling-version: '1.0'
6874
# cppyy: On
75+
- name: osx13-x86-clang-clang-repl-19-cppyy
76+
os: macos-13
77+
compiler: clang
78+
clang-runtime: '19'
79+
cling: Off
80+
cppyy: On
6981
- name: osx13-x86-clang-clang-repl-18-cppyy
7082
os: macos-13
7183
compiler: clang
@@ -91,6 +103,12 @@ jobs:
91103
cling: On
92104
cling-version: '1.0'
93105
cppyy: On
106+
- name: osx14-arm-clang-clang-repl-18-cppyy
107+
os: macos-14
108+
compiler: clang
109+
clang-runtime: '19'
110+
cling: Off
111+
cppyy: On
94112
- name: osx14-arm-clang-clang-repl-18-cppyy
95113
os: macos-14
96114
compiler: clang
@@ -353,7 +371,7 @@ jobs:
353371
else
354372
# Apply patches
355373
llvm_vers=$(echo "${{ matrix.clang-runtime }}" | tr '[:lower:]' '[:upper:]')
356-
if [[ "${llvm_vers}" != "18" ]]; then
374+
if [[ "${llvm_vers}" == "16" ]]||[[ "${llvm_vers}" == "17" ]]; then
357375
git apply -v ../cppyy-backend/patches/llvm/clang${{ matrix.clang-runtime }}-*.patch
358376
echo "Apply clang${{ matrix.clang-runtime }}-*.patch patches:"
359377
fi

0 commit comments

Comments
 (0)