-
Notifications
You must be signed in to change notification settings - Fork 4
/
travis.sh
executable file
·65 lines (55 loc) · 1.42 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
60
61
62
63
64
65
#!/bin/bash
RETVAL=0
cd contrib/ports/unix/check
#build and run unit tests
make clean all
# Build test using make, this tests the Makefile toolchain
make check -j 4
ERR=$?
echo Return value from unittests: $ERR
if [ $ERR != 0 ]; then
echo "++++++++++++++++++++++++++++++ unittests build failed"
RETVAL=1
fi
# Build example_app using cmake, this tests the CMake toolchain
cd ../../../../
# Copy lwipcfg for example app
cp contrib/examples/example_app/lwipcfg.h.travis contrib/examples/example_app/lwipcfg.h
# Generate CMake
mkdir build
cd build
/usr/local/bin/cmake .. -G Ninja
ERR=$?
echo Return value from cmake generate: $ERR
if [ $ERR != 0 ]; then
echo "++++++++++++++++++++++++++++++ cmake GENERATE failed"
RETVAL=1
fi
# Build CMake
/usr/local/bin/cmake --build .
ERR=$?
echo Return value from build: $ERR
if [ $ERR != 0 ]; then
echo "++++++++++++++++++++++++++++++ cmake build failed"
RETVAL=1
fi
# Build docs
/usr/local/bin/cmake --build . --target lwipdocs
ERR=$?
echo Return value from lwipdocs: $ERR
if [ $ERR != 0 ]; then
echo "++++++++++++++++++++++++++++++ lwIP documentation failed"
RETVAL=1
fi
# Test different lwipopts.h
cd ..
cd contrib/ports/unix/example_app
./iteropts.sh
ERR=$?
echo Return value from iteropts: $ERR
if [ $ERR != 0 ]; then
echo "++++++++++++++++++++++++++++++ lwIP iteropts test failed"
RETVAL=1
fi
echo Exit value: $RETVAL
exit $RETVAL