-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.sh
executable file
·59 lines (46 loc) · 1.69 KB
/
.travis.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
#!/bin/bash
###############################################################################
# #
# .travis.sh #
# ========== #
# #
# Version: 1.2.2 #
# Date : 09.02.18 #
# Author : Peter Weissig #
# #
# Source code was taken from: #
# https://github.com/RoboSAX/avr_spielfeld #
# #
# See also: #
# https://github.com/RoboSAX/avr_omnibot #
###############################################################################
### config
PWD_temp="$(pwd)"
### robolib
echo ""
echo "###### robolib"
echo ""
if [ "${ROBOLIB_MAKEFILE}" != "" ]; then
echo "robolib already sourced :-)"
else
. .robolib.sh
if [ $? -ne 0 ]; then cd "${PWD_temp}"; return -1; exit -1; fi
fi
### build
echo ""
echo "###### Building"
echo ""
cd "${PWD_temp}"
make
### done
if [ $? -ne 0 ]; then
echo ""
echo "###### errors occurred :-("
echo ""
return -1
exit -1
else
echo ""
echo "###### all done :-)"
echo ""
fi