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 4a6378e commit b7fbeb0Copy full SHA for b7fbeb0
.github/workflows/ci.yml
@@ -226,9 +226,14 @@ jobs:
226
echo "PIP_EXTRA_INDEX_URL=${PIP_EXTRA_INDEX_URL}" | tee -a "${GITHUB_ENV}"
227
echo "UV_INDEX=${UV_INDEX}" | tee -a "${GITHUB_ENV}"
228
fi
229
+
230
+ brew update
231
+ brew list --formula llvm || brew install llvm
232
+ export PATH="$(brew --prefix llvm)/bin:${PATH}"
233
export CLANG_TIDY_CMAKE_OPTIONS="${CLANG_TIDY_CMAKE_OPTIONS} -DUSE_METAL=ON"
234
235
echo "USE_METAL=ON" | tee -a "${GITHUB_ENV}"
236
+ echo "PATH=${PATH}" | tee -a "${GITHUB_ENV}"
237
echo "CLANG_TIDY_CMAKE_OPTIONS=${CLANG_TIDY_CMAKE_OPTIONS}" | tee -a "${GITHUB_ENV}"
238
239
- name: Setup Python and uv with caching
0 commit comments