Skip to content

Commit

Permalink
Skip perception modules with large image size
Browse files Browse the repository at this point in the history
  • Loading branch information
leungjch committed Mar 22, 2024
1 parent 5bbe47e commit 537d810
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/templates/docker_context/docker_context.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ while read -r module; do

# Loop through each service
while read -r service_out; do
# Temporarily skip perception services that have too large image size
if [[ "$service_out" == "lane_detection" ]] || \
[[ "$service_out" == "camera_object_detection" ]] || \
[[ "$service_out" == "semantic_segmentation" ]]; then
continue
fi
# Construct JSON object for each service with module and service name
json_object=$(jq -nc --arg module_out "$module_out" --arg service_out "$service_out" \
'{module: $module_out, service: $service_out}')
Expand Down

0 comments on commit 537d810

Please sign in to comment.