Skip to content

Commit 61ba078

Browse files
Update triton_update_ci.yml
1 parent 760f884 commit 61ba078

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/triton_update_ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Validate Triton Pull request by running our change on latest vLLM release
1+
name: Validate Triton Pull request by running our change on the latest version of vLLM
22
on:
33
pull_request:
44
jobs:
@@ -20,10 +20,10 @@ jobs:
2020
#!/bin/bash
2121
# Get latest VLLM RELEASED VERSION from https://github.com/triton-inference-server/vllm_backend/releases
2222
TAG=$(curl https://api.github.com/repos/triton-inference-server/vllm_backend/releases/latest | grep -i "tag_name" | awk -F '"' '{print $4}')
23-
export TRITON_CONTAINER_VERSION=${TAG#v} # example: 24.08
23+
export TRITON_CONTAINER_VERSION=${TAG#v} # example: 24.10
2424
if [ -z "$TRITON_CONTAINER_VERSION" ]
2525
then
26-
echo "\$TRITON_CONTAINER_VERSION is NULL, setting it to 24.08"
26+
echo "\$TRITON_CONTAINER_VERSION is NULL, setting it to 24.10"
2727
TRITON_CONTAINER_VERSION=24.10
2828
else
2929
echo "\$TRITON_CONTAINER_VERSION is NOT NULL"
@@ -36,7 +36,7 @@ jobs:
3636
if [ -z "$VLLM_VERSION" ]
3737
then
3838
echo "\$VLLM_VERSION is NULL, setting it to 0.5.5"
39-
VLLM_VERSION=0.5.3.post1
39+
VLLM_VERSION=0.5.5
4040
else
4141
echo "\$VLLM_VERSION is NOT NULL"
4242
fi

0 commit comments

Comments
 (0)