From 3eabe03013b31ff331ebfe2e1601ed958ea96103 Mon Sep 17 00:00:00 2001 From: "Alex Chi Z." Date: Fri, 9 Aug 2024 17:56:57 +0800 Subject: [PATCH] ci: add macOS 13 (#621) Co-authored-by: Prashanth Duvvada --- .github/workflows/cmake.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index df727eb4d..d2f3d5d14 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -37,8 +37,12 @@ jobs: - { name: "macOS 12 (Monterey) AppleClang", os: macos-12, - cc: "/usr/bin/clang", - cxx: "/usr/bin/clang++", + format: "/usr/local/opt/llvm@14/bin/clang-format", + tidy: "/usr/local/opt/llvm@14/bin/clang-tidy", + } + - { + name: "macOS 13 (Ventura) AppleClang", + os: macos-13, format: "/usr/local/opt/llvm@14/bin/clang-format", tidy: "/usr/local/opt/llvm@14/bin/clang-tidy", }