blob: e66a6cebe1bb0085818fd4387c48bf09323722d4 (
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
|
#!/bin/sh
#
# Usage:
# sh .travis-script.sh <BUILD_ID> [--args-to-configure...]
#
buildid="${1:?"need buildid"}"
date
ls -l configure
shift
set -x
abs_topsrcdir="$(pwd)"
rel_prefixdir="_root-${buildid}"
abs_prefixdir="${abs_topsrcdir}/${rel_prefixdir}"
rel_builddir="_build-${buildid}"
cc --version
c++ --version
gcc --version
g++ --version
clang --version
clang++ --version
echo "CC=\"${CC}\""
echo "CXX=\"${CXX}\""
test "x$CC" != "x" && "$CC" --version
test "x$CXX" != "x" && "$CXX" --version
set -e
mkdir "${rel_builddir}"
cd "${rel_builddir}"
if ../configure SLEEP=no --prefix="$abs_prefixdir" "$@"
then
echo "Configure successful."
else
s="$?"
echo "### BEGIN LOG: config.log ###"
cat config.log
echo "### END LOG: config.log ###"
exit "$?"
fi
make -j2
if make check
then
echo "\"make check\" successful."
else
s="$?"
for log in libgphoto2_port/tests/test-suite.log tests/test-suite.log
do
echo "### BEGIN LOG: $log ###"
cat "$log"
echo "### END LOG: $log ###"
done
exit "$?"
fi
if test -f tests/print-libgphoto2-version
then
tests/print-libgphoto2-version
fi
make install
examples/sample-afl
cd "$abs_topsrcdir"
find "${rel_prefixdir}" -type f | sort
# (cd "${rel_builddir}" && make uninstall clean)
|