forked from documentdb/documentdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_setup_rum_oss.sh
More file actions
executable file
·54 lines (43 loc) · 1.3 KB
/
install_setup_rum_oss.sh
File metadata and controls
executable file
·54 lines (43 loc) · 1.3 KB
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
#!/bin/bash
# fail if trying to reference a variable that is not set.
set -u
# exit immediately if a command exits with a non-zero status
set -e
source="${BASH_SOURCE[0]}"
while [[ -h $source ]]; do
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
source="$(readlink "$source")"
# if $source was a relative symlink, we need to resolve it relative to the path where the
# symlink file was located
[[ $source != /* ]] && source="$scriptroot/$source"
done
scriptDir="$( cd -P "$( dirname "$source" )" && pwd )"
echo "scriptDir: $scriptDir"
. $scriptDir/setup_versions.sh
RUM_REF=$(GetRumVersion)
. $scriptDir/utils.sh
if [ "${IVORYVERSION:-}" != "" ]; then
pgPath=$(GetPostgresPath $IVORYVERSION)
PATH=$pgPath:$PATH
fi
pushd $INSTALL_DEPENDENCIES_ROOT
rm -rf rum-repo
mkdir rum-repo
cd rum-repo
git init
git remote add origin https://github.com/postgrespro/rum.git
git fetch --depth 1 origin "$RUM_REF"
git checkout FETCH_HEAD
echo "building and installing rum extension ..."
echo $PATH
if [ "${DESTINSTALLDIR:-""}" == "" ]; then
sudo PATH=$PATH -E make USE_PGXS=1
sudo PATH=$PATH -E make install USE_PGXS=1
else
make USE_PGXS=1
make USE_PGXS=1 DESTDIR=$DESTINSTALLDIR install
fi
popd
if [ "${CLEANUP_SETUP:-"0"}" == "1" ]; then
rm -rf $INSTALL_DEPENDENCIES_ROOT/rum-repo
fi