Skip to content

Commit

Permalink
check JNI libs in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Dec 27, 2024
1 parent c010dd0 commit fb61a7a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tools/prepare_new_release_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ else
echo "git repo clean."
fi


./tools/check_release_jni_libs.sh
res_1=$?
if [ $res_1 -ne 0 ]; then
echo "ERROR: JNI libs have some problem."
exit 1
else
echo "JNI lib are ok."
fi

f1="build.gradle.kts"
f2="asan_run.sh"

Expand Down

0 comments on commit fb61a7a

Please sign in to comment.