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 6f6acc6 commit 920ca5eCopy full SHA for 920ca5e
.github/workflows/unit-tests.yaml
@@ -45,17 +45,10 @@ jobs:
45
brew install coreutils
46
brew install llvm@16
47
48
- - if: "matrix.os == 'macos-14'"
49
- name: "Run unit tests"
+ - name: "Run unit tests"
50
env:
51
- CC: "/opt/homebrew/opt/llvm@16/bin/clang"
52
- CXX: "/opt/homebrew/opt/llvm@16/bin/clang++"
53
- run: |-
54
- task clean
55
- task test-all
56
-
57
- - if: "false == (matrix.os == 'macos-14')"
58
59
+ CC: "${{ matrix.os == 'macos-14' && '/opt/homebrew/opt/llvm@16/bin/clang' || '' }}"
+ CXX: "${{ matrix.os == 'macos-14' && '/opt/homebrew/opt/llvm@16/bin/clang++' || '' }}"
+ run: |
60
task clean
61
task test-all
0 commit comments