We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49b5eec commit 0ee1f84Copy full SHA for 0ee1f84
1 file changed
monorepo-migration/migrate.sh
@@ -257,6 +257,13 @@ if [ -f "$SOURCE_REPO_NAME/.kokoro/conformance.sh" ]; then
257
258
echo "Adapting conformance script paths and build scopes for monorepo root..."
259
PL_MODULES="${SOURCE_REPO_NAME}"
260
+ # Also include any child BOM modules to ensure snapshots install to local .m2 cache for test utilities
261
+ for bom_dir in "${SOURCE_REPO_NAME}"/*-bom; do
262
+ if [ -d "$bom_dir" ]; then
263
+ PL_MODULES="${PL_MODULES},${bom_dir}"
264
+ fi
265
+ done
266
+
267
if [ -n "${PRE_INSTALL_DEPS}" ]; then
268
PL_MODULES="${PL_MODULES},${PRE_INSTALL_DEPS}"
269
fi
0 commit comments