File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 46
46
if [[ "${path_level_1[@]}" =~ "${service}" ]]; then
47
47
run_matrix="${run_matrix}{\"service\":\"${service}\",\"hardware\":\"${hardware}\"},"
48
48
else
49
- vendors=$(printf '%s\n' "${changed_files[@]}" | grep ${service} | cut -d'/' -f3 | grep -vE '*.py' | sort -u)
49
+ vendors=$(printf '%s\n' "${changed_files[@]}" | grep ${service} | cut -d'/' -f3 | grep -vE '*.py|Dockerfile ' | sort -u)
50
50
for vendor in ${vendors}; do
51
51
if [[ "${path_level_3[@]}" =~ "${service}_${vendor}" ]]; then
52
52
sub_vendors=$(printf '%s\n' "${changed_files[@]}" | grep ${service} | grep ${vendor} | cut -d'/' -f4 | grep -vE '*.py' | sort -u)
84
84
hardware : ${{ matrix.hardware }}
85
85
run : |
86
86
cd tests
87
- if [ -f test_${service}.sh ]; then timeout 10m bash test_${service}.sh; else echo "Test script not found, skip test!"; fi
87
+ if [ -f test_${service}.sh ]; then timeout 30m bash test_${service}.sh; else echo "Test script not found, skip test!"; fi
88
88
89
89
- name : Clean up container
90
90
env :
You can’t perform that action at this time.
0 commit comments