Skip to content

Commit 7f3c63e

Browse files
committed
no ninja
1 parent d218708 commit 7f3c63e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)