Skip to content

Commit 1785149

Browse files
authored
minor fix for CI detect (#658)
Signed-off-by: chensuyue <[email protected]>
1 parent a3da7c1 commit 1785149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/get_test_matrix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function find_test_1() {
3030
service=$pre_service/$service
3131
if [[ $(ls ${service} | grep -E "Dockerfile*") ]]; then
3232
service_name=$(echo $service | tr '/' '_' | cut -c7-) # comps/dataprep/redis/langchain -> dataprep_redis_langchain
33-
default_service_script_path=$(find ./tests -type f -name test_${service_name}*.sh) || true
33+
default_service_script_path=$(find ./tests -type f -name test_${service_name}.sh) || true
3434
if [ "$default_service_script_path" ]; then
3535
run_matrix="${run_matrix}{\"service\":\"${service_name}\",\"hardware\":\"intel_cpu\"},"
3636
fi

0 commit comments

Comments
 (0)