@@ -101,14 +101,16 @@ jobs:
101101 export MTRT_TENSORRT_VERSION=${{ matrix.trt }}
102102 # TODO: remove this, once patch is in our rockylinux prebuilt image
103103 dnf install -yq patch
104- # mlir-tensorrt-tools is not cuda, trt dependent, so we only build it once
105- # mlir-tensorrt-compiler, mlir-tensorrt-runtime is built per cuda, trt version
106- if [[ "${{ matrix.cuda }}" == "${{ env.LATEST_CUDA_VERSION }}" && "${{ matrix.trt }}" == "${{env.LATEST_TENSORRT_VERSION }}" ]]; then
107- ./build_tools/scripts/cicd-build-wheels.sh
108- else
109- PACKAGES="mlir_tensorrt_compiler mlir_tensorrt_runtime" \
110- ./build_tools/scripts/cicd-build-wheels.sh
111- fi
104+ PACKAGES="mlir_tensorrt_tools" PYTHON_VERSIONS="3.12" ./build_tools/scripts/cicd-build-wheels.sh
105+
106+ # # mlir-tensorrt-tools is not cuda, trt dependent, so we only build it once
107+ # # mlir-tensorrt-compiler, mlir-tensorrt-runtime is built per cuda, trt version
108+ # if [[ "${{ matrix.cuda }}" == "${{ env.LATEST_CUDA_VERSION }}" && "${{ matrix.trt }}" == "${{env.LATEST_TENSORRT_VERSION }}" ]]; then
109+ # ./build_tools/scripts/cicd-build-wheels.sh
110+ # else
111+ # PACKAGES="mlir_tensorrt_compiler mlir_tensorrt_runtime" \
112+ # ./build_tools/scripts/cicd-build-wheels.sh
113+ # fi
112114
113115 # Save ccache when cache is not hit or cache was a fallback(cache-matched is not the same as the cache key)
114116 - name : Save CCache
@@ -144,8 +146,8 @@ jobs:
144146 uses : actions/upload-artifact@v4
145147 with :
146148 name : release-wheels-${{ inputs.arch }}-cu${{ matrix.cuda }}-trt${{ matrix.trt }}
147- path : ${{ env.WHEELS_DIR }}
148- if-no-files-found : error
149+ path : mlir-tensorrt/.wheels
150+ if-no-files-found : warn
149151
150152concurrency :
151153 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-mlir-tensorrt-release-${{ inputs.arch }}
0 commit comments