Skip to content

Commit e636b4c

Browse files
committed
support rocm helm charts test
Signed-off-by: chensuyue <[email protected]>
1 parent 063547f commit e636b4c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/_helm-e2e.yml

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ jobs:
8181
if [[ "${{ inputs.hardware }}" == "gaudi" ]]; then
8282
value_files="${value_files}\"${filename}\","
8383
fi
84+
elif [[ "$filename" == *"rocm"* ]]; then
85+
if [[ "${{ inputs.hardware }}" == "rocm" ]]; then
86+
value_files="${value_files}\"${filename}\","
87+
fi
8488
elif [[ "$filename" == *"nv"* ]]; then
8589
continue
8690
else

.github/workflows/pr-chart-e2e.yml

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
example=$(echo "$values_file" | cut -d'/' -f1) # CodeGen
4747
if [[ "$valuefile" == *"gaudi"* ]]; then
4848
hardware="gaudi"
49+
elif [[ "$valuefile" == *"rocm"* ]]; then
50+
hardware="rocm"
4951
elif [[ "$valuefile" == *"nv"* ]]; then
5052
continue
5153
else

0 commit comments

Comments
 (0)