blob: a9116e4ebfcb24452dc0f577500ddb0695b6993f (
plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
#! /bin/bash
. dist/ansi_color.sh
disable_color
echo "$0" "$@"
# Stop in case of error
set -e
. dist/linux/travis-utils.sh
rm -f build_ok
# Transform long options to short ones
for arg in "$@"; do
shift
case "$arg" in
"--color"|"-color") set -- "$@" "-c";;
"--build"|"-build") set -- "$@" "-b";;
"--file"|"-file") set -- "$@" "-f";;
"--taskid"|"-taskid") set -- "$@" "-t";;
*) set -- "$@" "$arg"
esac
done
# Parse args
while getopts ":b:f:t:c" opt; do
case $opt in
c) enable_color;;
b) BLD=$OPTARG ;;
f) PKG_FILE=$OPTARG;;
t) TASK=$OPTARG;;
\?) printf "$ANSI_RED[GHDL] Invalid option: -$OPTARG $ANSI_NOCOLOR\n" >&2
exit 1 ;;
:) printf "$ANSI_RED[GHDL] Option -$OPTARG requires an argument. $ANSI_NOCOLOR\n" >&2
exit 1 ;;
esac
done
#---
printf "$ANSI_YELLOW[Prepare] $(pwd) $ANSI_NOCOLOR\n"
CDIR=$(pwd)
prefix="$CDIR/install-$BLD"
mkdir "$prefix"
mkdir "build-$BLD"
cd "build-$BLD"
#--- Env
echo "travis_fold:start:env.$TASK"
printf "$ANSI_YELLOW[Info] Environment $ANSI_NOCOLOR\n"
env
echo "travis_fold:end:env.$TASK"
#--- Configure
echo "travis_fold:start:configure.$TASK"
printf "$ANSI_YELLOW[GHDL] Configure $ANSI_NOCOLOR\n"
case "$BLD" in
mcode)
config_opts="" ;;
llvm)
config_opts="--with-llvm-config" ;;
llvm-3.5)
config_opts="--with-llvm-config=llvm-config-3.5 CXX=clang++" ;;
llvm-3.8)
config_opts="--with-llvm-config=llvm-config-3.8 CXX=clang++-3.8" ;;
docker)
echo "Check docker container!"
exit 0;;
*)
echo "$ANSI_RED[$TASK| GHDL - build] Unknown build $BLD $ANSI_NOCOLOR"
exit 1;;
esac
echo "../configure --prefix=$prefix $config_opts"
../configure "--prefix=$prefix" $config_opts
echo "travis_fold:end:configure.$TASK"
#--- make
echo "travis_fold:start:make.$TASK"
travis_time_start
printf "$ANSI_YELLOW[GHDL] Make $ANSI_NOCOLOR\n"
make
travis_time_finish
echo "travis_fold:end:make.$TASK"
echo "travis_fold:start:install.$TASK"
printf "$ANSI_YELLOW[GHDL] Install $ANSI_NOCOLOR\n"
make install
cd ..
echo "travis_fold:end:install.$TASK"
#--- package
echo "travis_fold:start:tar.$TASK"
printf "$ANSI_YELLOW[GHDL] Create package $ANSI_DARKCYAN$PKG_FILE $ANSI_NOCOLOR\n"
tar -zcvf "$PKG_FILE" -C "$prefix" .
echo "travis_fold:end:tar.$TASK"
#--- test
export ENABLECOLOR TASK
export GHDL="$prefix/bin/ghdl"
cd testsuite
failures=""
echo "travis_fold:start:tests.gna.$TASK"
travis_time_start
printf "$ANSI_YELLOW[Test] gna $ANSI_NOCOLOR\n"
cd gna
dirs=`./testsuite.sh --list-tests`
for d in $dirs; do
cd $d
if ./testsuite.sh > test.log 2>&1 ; then
echo "gna $d: ok"
# Don't disp log
else
echo "${ANSI_RED}gna $d: failed${ANSI_NOCOLOR}"
cat test.log
failures="$failures $d"
fi
cd ..
# Stop at the first failure
[ "$failures" = "" ] || break
done
cd ..
travis_time_finish
echo "travis_fold:end:tests.gna.$TASK"
[ "$failures" = "" ] || exit 1
echo "travis_fold:start:tests.vests.$TASK"
travis_time_start
printf "$ANSI_YELLOW[Test] vests $ANSI_NOCOLOR\n"
cd vests
if ./testsuite.sh > vests.log 2>&1 ; then
echo "${ANSI_GREEN}Vests is OK$ANSI_NOCOLOR"
wc -l vests.log
else
cat vests.log
echo "${ANSI_RED}Vests failure$ANSI_NOCOLOR"
failures=vests
fi
cd ..
travis_time_finish
echo "travis_fold:end:tests.vests.$TASK"
[ "$failures" = "" ] || exit 1
$GHDL --version
cd ..
#---
# Do not remove this line, and don't write anything below, since it is used to identify successful builds
echo "[$TASK|SUCCESSFUL]"
touch build_ok
|