Skip to content

Commit c9423c1

Browse files
committedDec 9, 2015
[Travis] Don't build with debug info
1 parent 70e35ff commit c9423c1

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed
 

‎ci/travis/linux/before_install.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,3 @@ sudo -H pip install autopep8 # TODO when switching to trusty or above: replace p
6464

6565
#update clang
6666
sudo apt-get install --force-yes llvm-3.7 llvm-3.7-dev clang-3.7 libstdc++-4.9-dev
67-
export CXX="clang++-3.7"
68-
export CC="clang-3.7"
69-
70-
cmake --version
71-
clang --version

‎ci/travis/linux/install.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
mkdir build
22
cd build
3+
34
export CXX="clang++-3.7"
45
export CC="clang-3.7"
5-
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
6-
-DWITH_SERVER=ON \
6+
7+
cmake --version
8+
clang --version
9+
10+
cmake -DWITH_SERVER=ON \
711
-DWITH_STAGED_PLUGINS=OFF \
812
-DWITH_GRASS=ON \
913
-DSUPPRESS_QT_WARNINGS=ON \

0 commit comments

Comments
 (0)