24883 transform options test

This commit is contained in:
bsayan2
2025-06-05 17:42:03 +05:30
parent 7359255718
commit ce929ce739
6 changed files with 20 additions and 5 deletions

View File

@@ -184,4 +184,14 @@ function retieveLatestTag() {
rm -rf "${LOCAL_PATH}"
}
function buildCoreAio() {
local GIT_REPO="${1}"
local BRANCH="${2}"
cloneRepo "${GIT_REPO}" "${BRANCH}"
pushd "$(dirname "${BASH_SOURCE[0]}")/../../../"
cd "$(basename "${GIT_REPO%.git}")"
mvn -B -V -q clean install -DskipTests -Dmaven.javadoc.skip=true -Plocal
popd
}
set -vx