This is an automated email from the ASF dual-hosted git repository.
janardhan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 70a3008446 [MINOR] small script for the release build verify script
(#1638)
70a3008446 is described below
commit 70a3008446fab1d9f72c835e5ea4709dadb2f663
Author: Janardhan Pulivarthi <[email protected]>
AuthorDate: Wed Jun 15 23:04:33 2022 +0530
[MINOR] small script for the release build verify script (#1638)
---
dev/release/src/test/bin/verifyBuild.sh | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/dev/release/src/test/bin/verifyBuild.sh
b/dev/release/src/test/bin/verifyBuild.sh
index a8bc908709..d68265da2d 100755
--- a/dev/release/src/test/bin/verifyBuild.sh
+++ b/dev/release/src/test/bin/verifyBuild.sh
@@ -72,10 +72,10 @@ if [ -z "$SPARK_HOME" ] ; then
printUsageExit;
fi
-if [ -z "$HADOOP_HOME" ] ; then
- echo "`date +%Y-%m-%dT%H:%M:%S`: ERROR: Environment variable 'HADOOP_HOME'
has not been defined.";
- printUsageExit;
-fi
+#if [ -z "$HADOOP_HOME" ] ; then
+# echo "`date +%Y-%m-%dT%H:%M:%S`: ERROR: Environment variable
'HADOOP_HOME' has not been defined.";
+# printUsageExit;
+#fi
# find the root path which contains the script file
# tolerate path with spaces
@@ -121,7 +121,7 @@ echo "`date +%Y-%m-%dT%H:%M:%S`: INFO: Downloading binaries
from distribution lo
runCommand "mkdir -p $WORKING_DIR/downloads"
runCommand "cd $WORKING_DIR/downloads"
#ToDo: release staging location
-#runCommand "wget -r -nH -nd -np -R 'index.html*'
https://dist.apache.org/repos/dist/dev/systemml/$DIST_DIR/"
+runCommand "wget -r -nH -nd -np -R 'index.html*'
https://dist.apache.org/repos/dist/dev/systemds/$DIST_DIR/"
echo
"========================================================================================================="
>> $OUT_FILE
## Verify binary tgz files
@@ -131,7 +131,7 @@ runCommand "rm -rf systemds-$VER_NAME-bin"
runCommand "tar -xvzf systemds-$VER_NAME-bin.tgz"
runCommand "cd systemds-$VER_NAME-bin"
runCommand "echo \"print('hello world');\" > hello.dml"
-runCommand "./systemds-standalone.sh hello.dml"
+runCommand "./bin/systemds hello.dml"
runCommand "cd .."
## Verify binary zip files
@@ -141,7 +141,7 @@ runCommand "rm -rf systemds-$VER_NAME-bin"
runCommand "unzip systemds-$VER_NAME-bin.zip"
runCommand "cd systemds-$VER_NAME-bin"
runCommand "echo \"print('hello world');\" > hello.dml"
-runCommand "./systemds-standalone.sh hello.dml"
+runCommand "./bin/systemds hello.dml"
runCommand "cd .."
## Verify src tgz files