File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -40,17 +40,17 @@ jobs:
4040 run : " npm install -g @go-task/cli"
4141
4242 - if : " matrix.os == 'macos-14'"
43- name : " Run unit tests"
44- env :
45- CC : " /opt/homebrew/opt/llvm@16/bin/clang"
46- CXX : " /opt/homebrew/opt/llvm@16/bin/clang++"
43+ name : " Install MacOS-14 deps: coreutils (for md5sum) and AppleClang16 (for c++20)"
4744 run : |-
45+ brew install coreutils
4846 brew install llvm@16
49- task clean
50- task test-all
5147
52- - if : " false == (matrix.os == 'macos-14')"
53- name : " Run unit tests"
48+ - name : " Run unit tests"
49+ env :
50+ CC : >-
51+ ${{ if eq(matrix.os, "macos-14") }} ? "/opt/homebrew/opt/llvm@16/bin/clang" : ""
52+ CXX : >-
53+ ${{ if eq(matrix.os, "macos-14") }} ? "/opt/homebrew/opt/llvm@16/bin/clang++" : ""
5454 run : |-
5555 task clean
5656 task test-all
You can’t perform that action at this time.
0 commit comments