-
Notifications
You must be signed in to change notification settings - Fork 5
/
_install_TEMPLATE.sh
executable file
·62 lines (47 loc) · 2.51 KB
/
_install_TEMPLATE.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
#!/bin/bash
#"***************************************************************************************************"
# common initialization
#"***************************************************************************************************"
# select master or some GitHub hash version, and whether or not to force a clean
THIS_CHECKOUT=master
THIS_CLEAN=true
# perform some version control checks on this file
./gitcheck.sh $0
# initialize some environment variables and perform some sanity checks
. ./init.sh
# we don't want tee to capture exit codes
set -o pipefail
# ensure we alwaye start from the $WORKSPACE directory
cd "$WORKSPACE"
echo "***************************************************************************************************" | tee -a "$THIS_LOG"
echo " Install TEMPLATE. Saving log to $THIS_LOG" | tee -a "$THIS_LOG"
echo "***************************************************************************************************" | tee -a "$THIS_LOG"
# Call the common github checkout:
$SAVED_CURRENT_PATH/fetch_github.sh https://github.com/gojimmypi/TEMPLATE.git TEMPLATE $THIS_CHECKOUT 2>&1 | tee -a "$THIS_LOG"
$SAVED_CURRENT_PATH/check_for_error.sh $? "$THIS_LOG"
cd TEMPLATE
# optional clean
if [ "$THIS_CLEAN" == "true" ]; then
echo "" 2>&1 | tee -a "$THIS_LOG"
echo "make clean" 2>&1 | tee -a "$THIS_LOG"
make clean 2>&1 | tee -a "$THIS_LOG"
$SAVED_CURRENT_PATH/check_for_error.sh $? "$THIS_LOG"
fi
# optional WSL detection
if grep -q ?Microsoft /proc/version; then
echo "WSL!"
else
echo "Non-WSL"
fi
# make
echo "" 2>&1 | tee -a "$THIS_LOG"
echo "make" 2>&1 | tee -a "$THIS_LOG"
make 2>&1 | tee -a "$THIS_LOG"
$SAVED_CURRENT_PATH/check_for_error.sh $? "$THIS_LOG"
# make install
echo "" 2>&1 | tee -a "$THIS_LOG"
echo "sudo make install" 2>&1 | tee -a "$THIS_LOG"
sudo make install 2>&1 | tee -a "$THIS_LOG"
$SAVED_CURRENT_PATH/check_for_error.sh $? "$THIS_LOG"
cd $SAVED_CURRENT_PATH
echo "Completed $0" | tee -a "$THIS_LOG"