We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 063547f commit e636b4cCopy full SHA for e636b4c
.github/workflows/_helm-e2e.yml
@@ -81,6 +81,10 @@ jobs:
81
if [[ "${{ inputs.hardware }}" == "gaudi" ]]; then
82
value_files="${value_files}\"${filename}\","
83
fi
84
+ elif [[ "$filename" == *"rocm"* ]]; then
85
+ if [[ "${{ inputs.hardware }}" == "rocm" ]]; then
86
+ value_files="${value_files}\"${filename}\","
87
+ fi
88
elif [[ "$filename" == *"nv"* ]]; then
89
continue
90
else
.github/workflows/pr-chart-e2e.yml
@@ -46,6 +46,8 @@ jobs:
46
example=$(echo "$values_file" | cut -d'/' -f1) # CodeGen
47
if [[ "$valuefile" == *"gaudi"* ]]; then
48
hardware="gaudi"
49
+ elif [[ "$valuefile" == *"rocm"* ]]; then
50
+ hardware="rocm"
51
elif [[ "$valuefile" == *"nv"* ]]; then
52
53
0 commit comments