Skip to content

Commit

Permalink
Update trigger_ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nvda-mesharma authored Aug 30, 2024
1 parent f484188 commit 91dc27a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/trigger_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ jobs:
#!/bin/bash
# Get latest VLLM RELEASED VERSION from https://github.com/triton-inference-server/vllm_backend/releases
TAG=$(curl https://api.github.com/repos/triton-inference-server/vllm_backend/releases/latest | grep -i "tag_name" | awk -F '"' '{print $4}')
export TRITON_CONTAINER_VERSION=${TAG#v} # example: 24.06
export TRITON_CONTAINER_VERSION=${TAG#v} # example: 24.08
if [ -z "$TRITON_CONTAINER_VERSION" ]
then
echo "\$TRITON_CONTAINER_VERSION is NULL, setting it to 24.07"
TRITON_CONTAINER_VERSION=24.07
TRITON_CONTAINER_VERSION=24.08
else
echo "\$TRITON_CONTAINER_VERSION is NOT NULL"
fi
echo "TRITON_CONTAINER_VERSION = ${TRITON_CONTAINER_VERSION}"
# Get latest VLLM RELEASED VERSION from https://github.com/vllm-project/vllm/releases
TAG=$(curl https://api.github.com/repos/vllm-project/vllm/releases/latest | grep -i "tag_name" | awk -F '"' '{print $4}')
export VLLM_VERSION=${TAG#v} # example: 0.5.3.post1
export VLLM_VERSION=${TAG#v} # example: 0.5.5
if [ -z "$VLLM_VERSION" ]
then
echo "\$VLLM_VERSION is NULL, setting it to 0.5.3.post1"
VLLM_VERSION=0.5.3.post1
echo "\$VLLM_VERSION is NULL, setting it to 0.5.5"
VLLM_VERSION=0.5.5
else
echo "\$VLLM_VERSION is NOT NULL"
fi
Expand Down

0 comments on commit 91dc27a

Please sign in to comment.