Skip to content

Commit 55e7f61

Browse files
committed
Add back md5sum for macos14
1 parent 0584173 commit 55e7f61

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/unit-tests.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)