Skip to content

Commit

Permalink
hotfix: fix trtllm CI build on release (#2981)
Browse files Browse the repository at this point in the history
* hotfix: fix trtllm CI build on release

* fix: test release.

* fix: test release.

* fix: test release. env not recognized actions/runner#1661

* fix: test release. Works.
  • Loading branch information
Hugoch authored and danieldk committed Feb 4, 2025
1 parent 5da2db0 commit acb1579
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
export runs_on="ubuntu-latest"
export platform=""
export extra_pytest=""
if [[ "${GITHUB_REF}" == "refs/tags/*" ]]; then
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
export build_type="release";
export target="";
else
Expand Down Expand Up @@ -263,4 +263,5 @@ jobs:

steps:
- name: Run C++/CUDA tests
if: ${{ env.LABEL == 'ci-runtime' }}
run: /usr/local/tgi/bin/tgi_trtllm_backend_tests
2 changes: 1 addition & 1 deletion Dockerfile_trtllm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG cuda_arch_list="75-real;80-real;86-real;89-real;90-real"
ARG build_type=release
ARG ompi_version=4.1.7
ARG sccache_gha_enabled=no
ARG sccache_gha_enabled=off
ARG actions_cache_url=""
ARG actions_runtime_token=""

Expand Down

0 comments on commit acb1579

Please sign in to comment.