File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -10,23 +10,31 @@ sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
10
10
sudo apt-get update -y
11
11
12
12
# install boost headers and g++ upgrades
13
- sudo apt-get -y install boost1.55 gcc-4.8 g++-4.8 gcc-4.7 g++-4.7
13
+ sudo apt-get -y -qq install boost1.55 gcc-4.8 g++-4.8 gcc-4.7 g++-4.7
14
14
15
15
# run tests against g++ 4.7
16
16
export CXX=" g++-4.7" ; export CC=" gcc-4.7"
17
+ echo ' running tests against g++ 4.7'
17
18
make test
18
19
make bench
19
20
make clean
20
21
21
22
# run tests against g++ 4.8
22
23
export CXX=" g++-4.8" ; export CC=" gcc-4.8"
24
+ echo ' running tests against g++ 4.8'
23
25
make test
24
26
make bench
25
27
make clean
26
28
27
29
# compare object sizes against boost::variant
30
+ echo ' comparing object sizes to boost::variant'
28
31
make sizes /usr/include/boost/variant.hpp
29
32
make clean
30
33
31
34
# test building with gyp
35
+ echo ' testing build with gyp'
32
36
make gyp
37
+
38
+ # set strictness back to normal
39
+ # to avoid tripping up travis
40
+ set +e +u
You can’t perform that action at this time.
0 commit comments