CI must be green.

This commit is contained in:
Nicolas Patry 2025-01-31 13:16:29 +01:00
parent 57fa04adfd
commit 50c8ebdef0
No known key found for this signature in database
GPG Key ID: D2920555C90F704C
2 changed files with 6 additions and 6 deletions

View File

@ -74,12 +74,12 @@ jobs:
export runs_on="ubuntu-latest"
export platform=""
export extra_pytest=""
if [[ "${GITHUB_REF}" == "refs/tags/*" ]]; then
export build_type="release";
export target="";
else
if [[ "${GITHUB_REF}" == "refs/tags/*" ]]; then
export build_type="release";
export target="";
else
export build_type="dev";
export target="ci-runtime";
export target="ci-runtime";
fi
;;
rocm)

View File

@ -179,4 +179,4 @@ ENV CMAKE_PREFIX_PATH="/usr/local/mpi:/usr/local/tensorrt"
ENV USE_LLD_LINKER=ON
ENV CUDA_ARCH_LIST=${cuda_arch_list}
```
```