blob: e6a54a8b3e29605647c7333b8208109b748ec519 [file] [log] [blame]
Tomo Suzuki2fd29b02023-06-12 09:46:47 -07001#!/bin/bash
2
Protobuf Team Botb1f92b72023-07-13 12:26:38 -07003set -e -o pipefail
Tomo Suzuki2fd29b02023-06-12 09:46:47 -07004
5echo "Running Linkage Monitor check"
6
7echo "Maven command: $(which mvn)"
8mvn --version
9
10# This script runs within the Bazel's sandbox directory and uses protoc
11# generated within the Bazel project.
12protoc_location=$(realpath "${RUNFILES_DIR}/com_google_protobuf/protoc")
13if [ ! -x "${protoc_location}" ]; then
14 echo "${protoc_location} is not found or not executable"
15 exit 1
16fi
17
18cd java
19
Protobuf Team Botb1f92b72023-07-13 12:26:38 -070020# Install the test BOM for Linkage Monitor
21pushd test/linkage-monitor-check-bom
22mvn -e -B install
23popd
24
Tomo Suzuki2fd29b02023-06-12 09:46:47 -070025# Linkage Monitor requires the artifacts to be available in local Maven
26# repository.
Protobuf Team Botb1f92b72023-07-13 12:26:38 -070027mvn -e -B clean generate-sources install \
28 -Dhttps.protocols=TLSv1.2 \
Tomo Suzuki2fd29b02023-06-12 09:46:47 -070029 -Dmaven.test.skip=true \
30 -Dprotobuf.basedir="../.." \
31 -Dprotoc="${protoc_location}"
32
33echo "Installed the artifacts to local Maven repository"
34
Protobuf Team Botb1f92b72023-07-13 12:26:38 -070035curl -O "https://storage.googleapis.com/cloud-opensource-java-linkage-monitor/linkage-monitor-latest-all-deps.jar"
Tomo Suzuki2fd29b02023-06-12 09:46:47 -070036
37echo "Running linkage-monitor-latest-all-deps.jar."
38
Protobuf Team Botb1f92b72023-07-13 12:26:38 -070039# The libraries in the BOM would detect incompatible changes via Linkage Monitor
40java -Xmx2048m -jar linkage-monitor-latest-all-deps.jar \
41 com.google.protobuf.test:linkage-monitor-check-bom
Tomo Suzuki2fd29b02023-06-12 09:46:47 -070042
43echo "Finished running Linkage Monitor check"