Skip to content

Commit

Permalink
minor fix for CI detect (#658)
Browse files Browse the repository at this point in the history
Signed-off-by: chensuyue <[email protected]>
  • Loading branch information
chensuyue authored Sep 10, 2024
1 parent a3da7c1 commit 1785149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/get_test_matrix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function find_test_1() {
service=$pre_service/$service
if [[ $(ls ${service} | grep -E "Dockerfile*") ]]; then
service_name=$(echo $service | tr '/' '_' | cut -c7-) # comps/dataprep/redis/langchain -> dataprep_redis_langchain
default_service_script_path=$(find ./tests -type f -name test_${service_name}*.sh) || true
default_service_script_path=$(find ./tests -type f -name test_${service_name}.sh) || true
if [ "$default_service_script_path" ]; then
run_matrix="${run_matrix}{\"service\":\"${service_name}\",\"hardware\":\"intel_cpu\"},"
fi
Expand Down

0 comments on commit 1785149

Please sign in to comment.