Skip to content

Commit 4802099

Browse files
committed
resolve comments
1 parent 01982b0 commit 4802099

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/llvm-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ jobs:
248248
files: |
249249
artifacts/${{ env.LLVM_PACKAGE_NAME }}
250250
generate_release_notes: false
251-
draft: true
251+
draft: false
252252
prerelease: true
253253
token: ${{ secrets.GITHUB_TOKEN }}
254254

mlir-tensorrt/DependencyProvider.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ nv_register_package(
2323
GIT_TAG v1.15.2
2424
EXCLUDE_FROM_ALL TRUE
2525
OPTIONS
26-
"INSTALL_GTEST ON"
26+
"INSTALL_GTEST OFF"
2727
"BUILD_GMOCK ON"
2828
"BUILD_GTEST ON"
2929
)

mlir-tensorrt/build_tools/scripts/cicd-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function build_with_preset() {
5656
local preset_name
5757
preset_name=$1
5858
if [[ "${preset_name}" == "github-cicd-prebuilt-llvm" ]]; then
59-
cmake -B "${BUILD_DIR}" -DLLVM_EXTERNAL_LIT:FILEPATH="$(command -v lit || echo 'python3 -m lit.main')" -DMLIR_LIT_EXECUTABLE:FILEPATH="$(command -v lit || echo 'python3 -m lit.main')" --preset "${preset_name}" --fresh
59+
cmake -B "${BUILD_DIR}" -DLLVM_EXTERNAL_LIT:FILEPATH="$(command -v lit || echo 'python3 -m lit.main')" --preset "${preset_name}" --fresh
6060
else
6161
cmake -B "${BUILD_DIR}" --preset "${preset_name}" --fresh
6262
fi

0 commit comments

Comments
 (0)