1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00
cdt/releng/scripts/check_bundle_versions_report.sh

78 lines
3.9 KiB
Bash
Executable file

#!/bin/bash
###############################################################################
# Copyright (c) 2018, 2023 Kichwa Coders Ltd and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
###############################################################################
set -e
if test ! -z "$(git status -s -uno)"; then
echo "You have changes. Please stash them before continuing."
exit 1
fi
##
# Make sure all versions have been bumped appropriately compared to the baseline
##
logfile=baseline-compare-and-replace.log
bundles_only_qualifier_changed=$(grep "Only qualifier changed" ${logfile} | sed -e 's/^.*Only qualifier changed for .//' -e 's@/.*@@' | sort)
if [ -n "$bundles_only_qualifier_changed" ]; then
echo
echo "The following bundles are missing a service segment version bump:"
for bundle in $bundles_only_qualifier_changed; do
echo " - $bundle"
done
echo "Please bump service segment by 100 if this change is intended for the main"
echo "branch by updating the Bundle-Version: in the MANIFEST.MF of the failing bundles."
echo "See: https://github.com/eclipse-platform/eclipse.platform/blob/master/docs/VersionNumbering.md#when-to-change-the-service-segment"
echo "The full log of this build is above"
echo
fi
bundles_same_version_different_content=$(grep "baseline and build artifacts have same version but different contents" ${logfile} | sed -e 's/^.* on project //' -e 's@: baseline.*@@' | sort)
if [ -n "$bundles_same_version_different_content" ]; then
echo
echo "The following bundles have same version as baseline, but different contents:"
for bundle in $bundles_same_version_different_content; do
echo " - $bundle"
done
echo "This can happen for a variety of reasons:"
echo " - The comparison filters in the root pom.xml are not working"
echo " - Different versions of Java are being used to compile compared to the baseline"
echo " - A dependency has changed causing the generated classes to be different"
echo "Please bump service segment by 100 if this change is intended for the main"
echo "branch by updating the Bundle-Version: in the MANIFEST.MF of the failing bundles."
echo "See: https://github.com/eclipse-platform/eclipse.platform/blob/master/docs/VersionNumbering.md#when-to-change-the-service-segment"
echo "The full log of this build is above"
echo
fi
api_errors=$(grep "API ERROR" ${logfile} | grep -v "0 API ERRORS" || true)
if [ -n "$api_errors" ]; then
echo
echo "API Errors were detected when running the build:"
grep "API ERROR" ${logfile} | grep -v "0 API ERRORS" || true
major_version=$(grep "The major version should be incremented" ${logfile})
if [ -n "$major_version" ]; then
echo "WARNING: some of the API errors report as 'major version should be incremented'. Incrementing the"
echo "major version is only allowed on major new versions of CDT. This error indicates that API has been"
echo "broken in some incompatible way. A project committer can help explain what to do if the (lengthy)"
echo "documentation below needs interpreting for this use case.".
fi
echo "See https://github.com/eclipse-cdt/cdt/blob/main/POLICY.md#api for details"
fi
success=$(grep "SUCCESS - Maven check all versions have been bumped appropriately appears to have completed successfully" ${logfile})
if [ -n "$success" ]; then
echo "Maven check all versions have been bumped appropriately appears to have completed successfully"
elif [ -z "$bundles_only_qualifier_changed" ] && [ -z "$bundles_same_version_different_content" ]; then
echo "Maven 'check all versions have been bumped appropriately' failed! Please see the"
echo "log of the failed Maven run above"
exit 1
fi