forked from h2oai/h2o-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_s3_jar.sh
executable file
·92 lines (77 loc) · 2.81 KB
/
get_s3_jar.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/bin/bash
set -e
echo "Gets the latest h2o.jar (only + version file) from s3, using curl"
echo "also copies the R/* downloaded stuff to target/R"
#**************************************
# do some bash parameters, just in case we have future expansion
# -n is no download of the jar
NO_DOWNLOAD=0
# default to hilbert
BRANCH=master
while getopts nb: flag
do
case $flag in
n)
echo "Won't download the h2o.jar from S3. Assume target/h2o.jar exists"
NO_DOWNLOAD=1
;;
b)
BRANCH=$OPTARG
echo "branch is $BRANCH"
;;
?)
exit
;;
esac
done
shift $(( OPTIND - 1 )) # shift past the last flag or argument
echo remaining parameters to Bash are $*
echo "using branch: $BRANCH"
#**************************************
d=`dirname $0`
cd $d
rm -f ./latest_h2o_jar_version
curl -k --silent -o latest_h2o_jar_version https://h2o-release.s3.amazonaws.com/h2o/${BRANCH}/latest
version=$(<latest_h2o_jar_version)
echo "latest h2o jar version is: $version"
curl -k --silent -o latest_h2o_project_version https://h2o-release.s3.amazonaws.com/h2o/${BRANCH}/${version}/project_version
project_version=$(<latest_h2o_project_version)
# a secret way to skip the download (use any arg)
if [ $NO_DOWNLOAD -eq 0 ]
then
# echo "getting JUST $version/h2o.jar"
rm -f ./h2o*$version.jar
rm -f ./h2o*$version.zip
zipurl=https://s3.amazonaws.com/h2o-release/h2o/${BRANCH}/${version}/h2o-${project_version}.zip
echo Downloading ${zipurl} ...
curl -k -o h2o-${project_version}.zip ${zipurl}
mv h2o-*$version.zip h2o_$version.zip
fi
# this is the dir it unzips to
rm -f -r h2o*$version
unzip h2o_$version.zip
echo "copying h2o.jar to target/h2o.jar (overwrite)"
mkdir -p target
cp -f ./h2o*$version/h2o.jar target/h2o.jar
cp -f ./latest_h2o_jar_version target/latest_h2o_jar_version
echo "copying the downloaded R dir to target/R"
rm -f -r target/R
cp -f -r ./h2o*$version/R target/R
# this is the one we point the R tests to. but we want a generic, no version name for them (like h2o/target)
rm -f -r ./h2o-downloaded
cp -r ./h2o-*$version ./h2o-downloaded
echo "You want this for your R tests"
echo "export H2OWrapperDir=./h2o-downloaded/R"
echo ""
echo "Done. Go forth and run tests. If you build.sh or makefile, the h2o.jar will be overwritten"
echo "I left you a copy here though, if you don't want to download again. Just cp to target/h2o.jar"
echo "You may want to delete it if they accumulate"
echo "target/h2o-sources.jar is not touched, so it is out-of-step (but not used)"
# look at some stuff
ls -ltr ./latest_h2o_jar_version
cat ./latest_h2o_jar_version
ls -ltr ./h2o-*$version/h2o.jar
ls -ltr target/h2o.jar
ls -ltr ./h2o-*$version/R/h2o*.tar.gz
ls -ltr ./h2o-downloaded/R/h2o*.tar.gz
ls -ltr ./h2o-downloaded/hadoop/h2odriver*.jar