We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5070e26 commit fa39bd8Copy full SHA for fa39bd8
1 file changed
.github/workflows/unit-tests.yaml
@@ -43,21 +43,12 @@ jobs:
43
run: "npm install -g @go-task/cli"
44
45
- if: "'macos-14' == matrix.os"
46
- name: "Install macOS 14 deps: coreutils (for md5sum) and Apple Clang 16 (for C++20)"
+ name: "Install macOS 14 deps: coreutils (for md5sum) and LLVM Clang 15 (for Velox)"
47
run: |-
48
brew install coreutils
49
- brew install llvm@16
+ brew install llvm@15
50
51
- name: "Run unit tests and examples"
52
- env: >-
53
- ${{
54
- 'macos-14' == matrix.os
55
- && fromJson('{
56
- "CC": "/opt/homebrew/opt/llvm@16/bin/clang",
57
- "CXX": "/opt/homebrew/opt/llvm@16/bin/clang++"
58
- }')
59
- || fromJson('{}')
60
- }}
61
# Currently unit tests rely on cassert and fail to compile in release mode.
62
63
task test:run-debug
0 commit comments