We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e40ed1 commit c258588Copy full SHA for c258588
.github/workflows/unit-tests.yaml
@@ -45,16 +45,13 @@ jobs:
45
brew install coreutils
46
brew install llvm@16
47
48
+ - if: "'macos-14' == matrix.os"
49
- name: "Run unit tests"
- env: >-
50
- ${{
51
- 'macos-14' == matrix.os
52
- && fromJson('{
53
- "CC": "/opt/homebrew/opt/llvm@16/bin/clang",
54
- "CXX": "/opt/homebrew/opt/llvm@16/bin/clang++"
55
- }')
56
- || {}
57
- }}
58
- run: |-
59
- task clean
60
- task test-all
+ env:
+ CC: "/opt/homebrew/opt/llvm@16/bin/clang"
+ CXX: "/opt/homebrew/opt/llvm@16/bin/clang++"
+ run: "task test-all"
+
+ - if: "false == ('macos-14' == matrix.os)"
+ - name: "Run unit tests"
0 commit comments