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