File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,11 +72,11 @@ jobs:
7272
7373 - name : Install LLVM dependencies (MacOS)
7474 if : matrix.os == 'macOS-latest'
75- run : brew install llvm cmake ninja zlib
75+ run : brew install llvm cmake zlib
7676
7777 - name : Install dependencies (Windows)
7878 if : matrix.os == 'windows-latest'
79- run : choco install llvm cmake ninja -y --no-progress
79+ run : choco install llvm cmake -y --no-progress
8080
8181 - name : Install LLVM + provide libxml2s.lib (Windows)
8282 if : matrix.os == 'windows-latest'
@@ -126,13 +126,13 @@ jobs:
126126 - name : Build and Install TVM (MacOS)
127127 if : matrix.os == 'macOS-latest'
128128 run : |
129- export CMAKE_ARGS="-G Ninja; - DUSE_LLVM='$(brew --prefix llvm)/bin/llvm-config --link-static'; -DBUILD_TESTING=OFF "
129+ export CMAKE_ARGS="-DUSE_LLVM='$(brew --prefix llvm)/bin/llvm-config --link-static'"
130130 uv pip install --no-deps . --verbose --config-settings=cmake.args="$CMAKE_ARGS"
131131
132132 - name : Build and Install TVM (Windows)
133133 if : matrix.os == 'windows-latest'
134134 run : |
135- $env:CMAKE_ARGS = "-DUSE_LLVM=$env:LLVM_CONFIG -DBUILD_TESTING=OFF "
135+ $env:CMAKE_ARGS = "-DUSE_LLVM=$env:LLVM_CONFIG"
136136 uv pip install --no-deps . --verbose --config-settings=cmake.args="$env:CMAKE_ARGS"
137137
138138 - name : Install test dependencies
You can’t perform that action at this time.
0 commit comments