Skip to content

Commit

Permalink
Skip sim ci (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
VishGit1234 authored Mar 6, 2024
1 parent b3cd2db commit c7fcbc9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/templates/docker_context/docker_context.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ while read -r module; do
services=$(docker-compose -f "$module" config --services)
module_out=$(echo "$module" | sed -n 's/modules\/docker-compose\.\(.*\)\.yaml/\1/p')

# Skip simulation module
if [[ 'simulation' = $module_out ]]; then
continue
fi

# Only work with modules that are modified
if [[ $MODIFIED_MODULES != *$module_out* && $TEST_ALL = "false" ]]; then
continue
Expand Down

0 comments on commit c7fcbc9

Please sign in to comment.