We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a266c8 commit 702517cCopy full SHA for 702517c
.github/workflows/ci.yml
@@ -121,6 +121,14 @@ jobs:
121
uses: taiki-e/install-action@f1390fd0d8205ae79e5e57b1d1e300dceeb4163e
122
with:
123
tool: cargo-llvm-cov@0.6.16
124
+ # Install clang for MacOS due to Apple's Clang not supporting `wasm32-unknown-unknown` target.
125
+ - name: Install clang for MacOS
126
+ if: ${{ matrix.os == 'macos-latest' }}
127
+ run: |
128
+ brew install llvm
129
+ echo "$(brew --prefix llvm)/bin" >> "$GITHUB_PATH"
130
+ echo "CC=$(brew --prefix llvm)/bin/clang" >> "$GITHUB_ENV"
131
+ echo "CXX=$(brew --prefix llvm)/bin/clang++" >> "$GITHUB_ENV"
132
- name: Setting up cache
133
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
134
0 commit comments