From 96f3f19d36690e6ce0d23e7c03e23d3b5a3d6b7e Mon Sep 17 00:00:00 2001 From: mayuehit Date: Mon, 27 Oct 2025 11:37:52 +0000 Subject: [PATCH 1/3] update test/st/test.sh. Signed-off-by: mayuehit --- test/st/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/st/test.sh b/test/st/test.sh index 4a4d522..52af16a 100644 --- a/test/st/test.sh +++ b/test/st/test.sh @@ -87,7 +87,7 @@ function install_python_pkg() { pip3.9 install pytest pip3.9 install requests pip3.9 uninstall -y yr - pip3.9 install $YUANRONG_DIR/runtime/sdk/python/yr-*cp39-cp39-linux_x86_64.whl + pip3.9 install $YUANRONG_DIR/runtime/sdk/python/yr_sdk-*cp39-cp39-linux_x86_64.whl } function common_check_st_result() { -- Gitee From 36aa5733fc2b43f9d2c4397cf43a1a3281a575e0 Mon Sep 17 00:00:00 2001 From: mayuehit Date: Mon, 27 Oct 2025 11:38:44 +0000 Subject: [PATCH 2/3] update test/st/java/pom.xml. Signed-off-by: mayuehit --- test/st/java/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/st/java/pom.xml b/test/st/java/pom.xml index 03fdc36..e3a747e 100644 --- a/test/st/java/pom.xml +++ b/test/st/java/pom.xml @@ -16,7 +16,7 @@ com.yuanrong yr-api-sdk - 1.0.0 + v0.0.1 org.testng -- Gitee From fa2b2a4c482c6b0019093af4499856cc34db950e Mon Sep 17 00:00:00 2001 From: mayuehit Date: Mon, 27 Oct 2025 11:39:11 +0000 Subject: [PATCH 3/3] update test/st/java/build.sh. Signed-off-by: mayuehit --- test/st/java/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/st/java/build.sh b/test/st/java/build.sh index b2d9e7b..bd3a77f 100644 --- a/test/st/java/build.sh +++ b/test/st/java/build.sh @@ -45,10 +45,10 @@ done function install_sdk() { cd $SDK_DIR - jarfile=$(find ./ -name "yr-api-sdk-[0-9]*.jar" -print -quit) + jarfile=$(find ./ -name "yr-api-sdk-*.jar" -print -quit) echo "[INFO] --java st-- Installing java sdk from ${SDK_DIR}/${jarfile}" mvn -q install:install-file -Dfile=${jarfile} -DartifactId=yr-api-sdk -DgroupId=com.yuanrong \ - -Dversion=1.0.0 -Dpackaging=jar -DpomFile=./pom.xml + -Dversion=v0.0.1 -Dpackaging=jar -DpomFile=./pom.xml } function package() { -- Gitee