We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de951de commit 9443963Copy full SHA for 9443963
1 file changed
.github/workflows/check-build.yml
@@ -123,8 +123,14 @@ jobs:
123
module_dir=$(dirname "$module")
124
module_name=$(basename "$module_dir")
125
126
+ # Get the relative path from project root
127
+ module_path=${module_dir#./}
128
+
129
+ echo "DEBUG: module_dir=$module_dir, module_name=$module_name, module_path=$module_path"
130
+ echo "DEBUG: Checking for ' $module_path/' in ' $CHANGED_FILES '"
131
132
# Check if this specific module or common dependencies changed
- if echo "$CHANGED_FILES" | grep -q " $module_name/" || \
133
+ if echo " $CHANGED_FILES " | grep -q " $module_path/" || \
134
echo "$CHANGED_FILES" | grep -q "pom.xml" || \
135
echo "$CHANGED_FILES" | grep -q "powertools-common/"; then
136
echo "Changes detected in $module_name - running GraalVM tests"
0 commit comments