From c7fcbc9e32608d3cea34cd72dda918dc0af4aec3 Mon Sep 17 00:00:00 2001 From: VishGit1234 <47926842+VishGit1234@users.noreply.github.com> Date: Tue, 5 Mar 2024 19:16:10 -0500 Subject: [PATCH] Skip sim ci (#86) --- .github/templates/docker_context/docker_context.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/templates/docker_context/docker_context.sh b/.github/templates/docker_context/docker_context.sh index 5e35355f..126b5cb2 100755 --- a/.github/templates/docker_context/docker_context.sh +++ b/.github/templates/docker_context/docker_context.sh @@ -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