Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: pin ninja pip version temporarily to resolve build failure (ll…
…vm#1558) Going from ninja v1.10.2 to v1.11.1, there is a change that breaks the CI builds with the following error: ``` CMake Error at CMakeLists.txt:47 (project): Running '/main_checkout/torch-mlir/docker_venv/bin/ninja' '--version' failed with: CMake Error: CMAKE_ASM_COMPILER not set, after EnableLanguage ``` Ostensibly, the reason for the error about the ASM compiler is because llvm-project/llvm/CMakeLists.txt includes ASM among the list of languages used in the LLVM project. Adding `-DCMAKE_ASM_COMPILER=clang` does not resolve the error. Until we figure out why the new version of ninja causes the build failures, this patch pins the ninja to the one that worked.
- Loading branch information