diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-12 03:16:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-12 03:16:23 +0300 |
commit | ef5b27a82ebc3be576d8646de87831bec0d40289 (patch) | |
tree | 7115f5b2ad41ecd452d2c783b13493a51617a9f5 /tools/ci/jobs/gcc6_tests_gcov.sh | |
parent | 67c4d745a6065391f054d6327b6540ad556e1fd6 (diff) | |
download | plus-ef5b27a82ebc3be576d8646de87831bec0d40289.tar.gz plus-ef5b27a82ebc3be576d8646de87831bec0d40289.tar.bz2 plus-ef5b27a82ebc3be576d8646de87831bec0d40289.tar.xz plus-ef5b27a82ebc3be576d8646de87831bec0d40289.zip |
Remove gcov from ci i386 builds, because they failing with out of memory.
Diffstat (limited to 'tools/ci/jobs/gcc6_tests_gcov.sh')
-rwxr-xr-x | tools/ci/jobs/gcc6_tests_gcov.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc6_tests_gcov.sh b/tools/ci/jobs/gcc6_tests_gcov.sh new file mode 100755 index 000000000..97029b872 --- /dev/null +++ b/tools/ci/jobs/gcc6_tests_gcov.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +export CC=gcc-6 +export CXX=g++-6 +export LOGFILE=gcc6.log + +source ./tools/ci/scripts/init.sh + +aptget_install gcc-6 g++-6 \ + make autoconf automake autopoint gettext libphysfs-dev \ + libxml2-dev libcurl4-gnutls-dev libpng-dev \ + libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev \ + gcovr \ + valgrind + +export CXXFLAGS="-pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \ +-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \ +-std=gnu++1z -Wformat=1 \ +-Wno-attributes" + +source ./tools/ci/flags/gcc6.sh + +do_init +run_configure --enable-unittests=yes --with-gcov $* +export SDL_VIDEODRIVER=dummy +run_make_check +run_gcov gcov-6 gcc-6 + +source ./tools/ci/scripts/exit.sh + +exit 0 |