Skip to content

Commit 1a1d27c

Browse files
authored
[Misc] Fix Release Package Test Script (#18153)
* [COMMUNITY] Add new key for release signing * [Misc] Update test_release_package.sh Fix release script according tianqi advice (#17861 (comment)).
1 parent 7707496 commit 1a1d27c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/scripts/release/test_release_package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ echo "[6/9] Unzip ..."
7979
tar -zxf apache-tvm-src-${version_rc}.tar.gz
8080

8181
echo "[7/9] Checking whether binary in source code ..."
82-
output=`find apache-tvm-src-${version_rc} -type f -exec file {} + | grep -w "ELF\|shared object"`
82+
output=`find apache-tvm-src-${version} -type f -exec file {} + | grep -w "ELF\|shared object"`
8383
if [[ -n "$output" ]]; then
8484
echo "Error: ELF or shared object files found:"
8585
echo "$output"
8686
exit 1
8787
fi
8888

8989
echo "[8/9] Compile and Python Import on Linux ..."
90-
cd apache-tvm-src-${version_rc}
90+
cd apache-tvm-src-${version}
9191
mkdir build
9292
cd build
9393
cp ../cmake/config.cmake .

0 commit comments

Comments
 (0)