Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion s/spring-boot/build_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"maintainer": "sid226",
"package_name": "spring-boot",
"github_url": "https://github.com/spring-projects/spring-boot",
"version": "v3.3.3",
"version": "v4.0.1",
"default_branch": "main",
"package_dir": "s/spring-boot/",
"build_script": "springboot_ubi_9.3.sh",
Expand Down
10 changes: 4 additions & 6 deletions s/spring-boot/springboot_ubi_9.3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ----------------------------------------------------------------------------
#
# Package : spring-boot
# Version : v4.0.0
# Version : v4.0.1
# Source repo : https://github.com/spring-projects/spring-boot
# Tested on : UBI 9.3
# Language : Java
Expand All @@ -22,7 +22,7 @@ set -e

PACKAGE_NAME=spring-boot
PACKAGE_URL=https://github.com/spring-projects/spring-boot
PACKAGE_VERSION=${1:-v4.0.0}
PACKAGE_VERSION=${1:-v4.0.1}

yum install git wget -y
git clone $PACKAGE_URL
Expand All @@ -34,16 +34,14 @@ export JAVA_HOME=/usr/lib/jvm/java-25-openjdk
export PATH=$JAVA_HOME/bin:$PATH


# skipping the architecture check in spring-boot-docs.
if ! ./gradlew build -x :documentation:spring-boot-docs:checkArchitectureMain ; then
if ! ./gradlew build ; then
echo "------------------$PACKAGE_NAME:Build_fails---------------------"
echo "$PACKAGE_URL $PACKAGE_NAME"
echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | $OS_NAME | GitHub | Fail | Build_Fails"
exit 1
fi

# skipping the architecture check in spring-boot-docs.
if ! ./gradlew test -x :documentation:spring-boot-docs:checkArchitectureMain ; then
if ! ./gradlew test ; then
echo "------------------$PACKAGE_NAME::Build_and_Test_fails-------------------------"
echo "$PACKAGE_URL $PACKAGE_NAME"
echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | $OS_NAME | GitHub | Fail| Build_and_Test_fails"
Expand Down