Skip to content

Commit 75fb463

Browse files
committed
Remove llvm15 for macos14
1 parent 21680f6 commit 75fb463

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@ jobs:
4343
run: "npm install -g @go-task/cli"
4444

4545
- if: "'macos-14' == matrix.os"
46-
name: "Install macOS 14 deps: coreutils (for md5sum) and LLVM Clang 15 (for Velox)"
46+
name: "Install macOS 14 deps: coreutils (for md5sum)"
4747
run: |-
4848
brew install coreutils
49-
brew install llvm@15
5049
5150
- name: "Run unit tests and examples"
5251
# Currently unit tests rely on cassert and fail to compile in release mode.

cmake/Toolchains/utils.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function(setup_toolchains)
1111
OUTPUT_VARIABLE MACOS_VERSION
1212
OUTPUT_STRIP_TRAILING_WHITESPACE
1313
)
14-
if("${MACOS_VERSION}" VERSION_LESS "15")
14+
if("${MACOS_VERSION}" VERSION_LESS "14")
1515
set(CMAKE_TOOLCHAIN_FILE
1616
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/Toolchains/llvm-clang-15-toolchain.cmake"
1717
CACHE FILEPATH

0 commit comments

Comments
 (0)