Skip to content

Commit e94508c

Browse files
committed
ci: Run Linkage Checker for all relevant modules
1 parent 55d6234 commit e94508c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.kokoro/nightly/downstream-protobuf-binary-compatibility.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ for repo in ${REPOS_UNDER_TEST//,/ }; do # Split on comma
4848
mvn -B -ntp clean install -T 1C -DskipTests -Dclirr.skip
4949

5050
# Match all artifacts that start with google-cloud (rules out proto and grpc modules)
51-
ARTIFACT_LIST=$(cat "versions.txt" | grep "^google-cloud" | tr '\n' ',')
51+
# Exclude any matches to BOM artifacts or emulators
52+
ARTIFACT_LIST=$(cat "versions.txt" | grep "^google-cloud" | grep -v "bom|emulator" | tr '\n' ',')
5253
ARTIFACT_LIST=${ARTIFACT_LIST%,}
5354

5455
echo "Found artifacts ${ARTIFACT_LIST}"

0 commit comments

Comments
 (0)