Skip to content
Open
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 o/opensearch-project-security/build_info.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"maintainer": "Pratik.Tonage@ibm.com",
"maintainer": "Prachi.Gaonkar@ibm.com",
"package_name": "opensearch-project-security",
"github_url": "https://github.com/opensearch-project/security",
"version": "3.3.0.0",
Expand Down
14 changes: 13 additions & 1 deletion o/opensearch-project-security/security_3.3.0.0_ubi9.6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Tested on : UBI 9.6
# Language : Java
# Ci-Check : True
# Maintainer : Pratik Tonage <Pratik.Tonage@ibm.com>
# Maintainer : Prachi Gaonkar <Prachi.Gaonkar@ibm.com>
# Script License : Apache License, Version 2.0 or later
#
# Disclaimer : This script has been tested in root mode on the specified
Expand All @@ -22,6 +22,7 @@ PACKAGE_ORG="opensearch-project"
PACKAGE_VERSION="3.3.0.0"
COMMON_UTILS_VERSION="3.2.0.0"
PACKAGE_URL="https://github.com/${PACKAGE_ORG}/${PACKAGE_NAME}.git"
OPENSEARCH_VERSION="${PACKAGE_VERSION::-2}"
SCRIPT_PATH=$(dirname $(realpath $0))
RUNTESTS=1
BUILD_HOME="$(pwd)"
Expand Down Expand Up @@ -59,6 +60,17 @@ export PATH=$PATH:/usr/local/jdk-21.0.9+10/bin/
ln -sf /usr/local/jdk-21.0.9+10/bin/java /usr/bin/
rm -rf OpenJDK21U-jdk_ppc64le_linux_hotspot_21.0.9_10.tar.gz

# ------------------------------
# Build Opensearch
# ------------------------------
cd ${BUILD_HOME}
git clone https://github.com/opensearch-project/OpenSearch.git
cd OpenSearch
git checkout $OPENSEARCH_VERSION
./gradlew -p distribution/archives/linux-ppc64le-tar assemble
./gradlew -Prelease=true publishToMavenLocal
./gradlew :build-tools:publishToMavenLocal

# ------------------------------
# Build Opensearch common-utils
# ------------------------------
Expand Down
Loading