forked from cucumber/cucumber-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravis.sh
executable file
·122 lines (106 loc) · 3.35 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
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
#!/bin/sh
set -e #break script on non-zero exitcode from any command
set -x #display command being executed
startXvfb () {
# Xvfb sends SIGUSR1 to its parent when it finished startup, this causes the 'wait' below to stop waiting
# Starting Xvfb hangs on OSX, that's why we do this on Linux only now
if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
trap : USR1
(trap '' USR1; Xvfb $DISPLAY -screen 0 640x480x8 -nolisten tcp > /dev/null 2>&1) &
XVFBPID=$!
wait || :
trap '' USR1
if ! kill -0 $XVFBPID 2> /dev/null; then
echo "Xvfb failed to start" >&2
exit 1
fi
else
sudo Xvfb $DISPLAY -screen 0 640x480x8 -nolisten tcp > /dev/null 2>&1 &
XVFBPID=$!
sleep 5
fi
}
killXvfb () {
if [ -n "${XVFBPID:-}" ]; then
# Stop virtual X display server
sudo kill $XVFBPID
wait
fi
}
if [ -n "${FORMAT:-}" ]; then
# Reformat all code changed since this branch forked from the default branch
git fetch origin HEAD
if [ "${TRAVIS_PULL_REQUEST:-false}" = "false" ]; then
BASE_HEAD="$(git rev-parse FETCH_HEAD)"
else
BASE_HEAD="$(git merge-base FETCH_HEAD HEAD)"
fi
git clang-format-3.8 --binary=/usr/bin/clang-format-3.8 --style=file --commit="${BASE_HEAD}"
# Assert that all changes adhere to the asked for style
exec git diff --exit-code -- . ":!3rdparty"
fi
CTEST_OUTPUT_ON_FAILURE=ON
export CTEST_OUTPUT_ON_FAILURE
# Make Qt discoverable by CMake on OSX
for QT_DIR in /usr/local/Cellar/qt*/*; do
if [ -d "${QT_DIR}" ]; then
CMAKE_PREFIX_PATH="${CMAKE_PREFIX_PATH:+${CMAKE_PREFIX_PATH};}${QT_DIR}"
fi
done
cmake -E make_directory build
cmake -E chdir build cmake \
-G Ninja \
-DCUKE_ENABLE_EXAMPLES=on \
-DBUILD_SHARED_LIBS="${BUILD_SHARED_LIBS:-ON}" \
-DCMAKE_INSTALL_PREFIX=${HOME}/.local \
${CMAKE_PREFIX_PATH:+"-DCMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}"} \
${COVERALLS_SERVICE_NAME:+"-DCMAKE_BUILD_TYPE=Debug"} \
${COVERALLS_SERVICE_NAME:+"-DCMAKE_CXX_FLAGS='--coverage'"} \
${VALGRIND_TESTS:+"-DVALGRIND_TESTS=${VALGRIND_TESTS}"} \
${GMOCK_PATH:-"-DGMOCK_VER=${GMOCK_VER}"} \
${GMOCK_PATH:+"-DGMOCK_SRC_DIR=${GMOCK_PATH}"} \
..
cmake --build build
cmake --build build --target test
cmake --build build --target features
#
# Execute Calc examples
#
for TEST in \
build/examples/Calc/GTestCalculatorSteps \
build/examples/Calc/QtTestCalculatorSteps \
build/examples/Calc/BoostCalculatorSteps \
build/examples/Calc/FuncArgsCalculatorSteps \
; do
"${TEST}" > /dev/null &
sleep 1
cucumber examples/Calc
wait %
done
#
# Execute QtCalc examples
#
startXvfb # Start virtual X display server
for TEST in \
build/examples/CalcQt/GTestCalculatorQtSteps \
build/examples/CalcQt/QtTestCalculatorQtSteps \
build/examples/CalcQt/BoostCalculatorQtSteps \
; do
if [ -n "${DISPLAY:-}" ]; then
"${TEST}" 2> /dev/null &
sleep 1
cucumber examples/CalcQt
wait %
fi
done
killXvfb
#
# Execute feature showcase on Unix socket
#
SOCK=cucumber.wire.sock
TEST=build/examples/FeatureShowcase/FeatureShowcaseSteps
echo "unix: ${SOCK}" > examples/FeatureShowcase/features/step_definitions/cucumber.wire
"${TEST}" --unix "${SOCK}" > /dev/null &
cucumber examples/FeatureShowcase
wait %
cmake --build build --target install