summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-05-05 20:42:50 +0300
committerAndrei Karas <akaras@inbox.ru>2018-05-05 23:03:46 +0300
commitcdd3375268182ccd51c9798375e2766d0abdaa7f (patch)
tree56e4ba47531476e69dbf59f4dee7f115d1e40431
parent4e7b64f4c034e1d11b8ada8f2ba7f48dcb2fa8d8 (diff)
downloadplus-cdd3375268182ccd51c9798375e2766d0abdaa7f.tar.gz
plus-cdd3375268182ccd51c9798375e2766d0abdaa7f.tar.bz2
plus-cdd3375268182ccd51c9798375e2766d0abdaa7f.tar.xz
plus-cdd3375268182ccd51c9798375e2766d0abdaa7f.zip
Add gcc-8 ci build scripts.
-rwxr-xr-xtools/ci/jobs/gcc8.sh32
-rwxr-xr-xtools/ci/jobs/gcc8_lto.sh31
-rwxr-xr-xtools/ci/jobs/gcc8_sanitize.sh43
-rwxr-xr-xtools/ci/jobs/gcc8_sanitize_tests.sh46
-rwxr-xr-xtools/ci/jobs/gcc8_sdl2_tests_gcov.sh34
-rwxr-xr-xtools/ci/jobs/gcc8_silent.sh32
-rwxr-xr-xtools/ci/jobs/gcc8_tests.sh33
-rwxr-xr-xtools/ci/jobs/gcc8_tests_gcov.sh34
-rwxr-xr-xtools/ci/jobs/gcc8_tests_simd.sh38
9 files changed, 323 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc8.sh b/tools/ci/jobs/gcc8.sh
new file mode 100755
index 000000000..7abe10f09
--- /dev/null
+++ b/tools/ci/jobs/gcc8.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \
+-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \
+-std=gnu++1z -Wformat=1 \
+-Wno-attributes -fno-omit-frame-pointer"
+
+source ./tools/ci/flags/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-werror $*
+run_make
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_lto.sh b/tools/ci/jobs/gcc8_lto.sh
new file mode 100755
index 000000000..981538c60
--- /dev/null
+++ b/tools/ci/jobs/gcc8_lto.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$CXXFLAGS -ggdb3 -pipe -ffast-math -O9 -flto -fwhole-program \
+-fno-omit-frame-pointer -funswitch-loops -D_FORTIFY_SOURCE=2 -std=gnu++1z \
+-Wno-attributes -fno-omit-frame-pointer"
+
+source ./tools/ci/flags/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-werror $*
+run_make
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_sanitize.sh b/tools/ci/jobs/gcc8_sanitize.sh
new file mode 100755
index 000000000..f4143e4b7
--- /dev/null
+++ b/tools/ci/jobs/gcc8_sanitize.sh
@@ -0,0 +1,43 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \
+-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \
+-fsanitize=address -fsanitize=undefined \
+-fsanitize=shift -fsanitize=integer-divide-by-zero -fsanitize=unreachable \
+-fsanitize=vla-bound -fsanitize=null -fsanitize=return \
+-fsanitize=signed-integer-overflow -fsanitize=bounds -fsanitize=alignment \
+-fsanitize=object-size -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow \
+-fsanitize=nonnull-attribute -fsanitize=returns-nonnull-attribute -fsanitize=bool \
+-fsanitize=enum -fsanitize=vptr -fsanitize=bounds-strict \
+-fsanitize=leak \
+-fsanitize=shift-exponent -fsanitize=shift-base -fsanitize=bounds-strict \
+-fsanitize-address-use-after-scope \
+-std=gnu++1z -Wformat=1 \
+-Wno-attributes -fno-omit-frame-pointer"
+
+source ./tools/ci/flags/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-werror $*
+export ASAN_OPTIONS=detect_stack_use_after_return=true:strict_init_order=true:detect_invalid_pointer_pairs=1
+run_make
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_sanitize_tests.sh b/tools/ci/jobs/gcc8_sanitize_tests.sh
new file mode 100755
index 000000000..e28cabe97
--- /dev/null
+++ b/tools/ci/jobs/gcc8_sanitize_tests.sh
@@ -0,0 +1,46 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O2 -Wstrict-aliasing=2 \
+-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \
+-fno-omit-frame-pointer \
+-fsanitize=address -fsanitize=undefined \
+-fsanitize=shift -fsanitize=integer-divide-by-zero -fsanitize=unreachable \
+-fsanitize=vla-bound -fsanitize=null -fsanitize=return \
+-fsanitize=signed-integer-overflow -fsanitize=bounds -fsanitize=alignment \
+-fsanitize=object-size -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow \
+-fsanitize=nonnull-attribute -fsanitize=returns-nonnull-attribute -fsanitize=bool \
+-fsanitize=enum -fsanitize=vptr -fsanitize=bounds-strict \
+-fsanitize=leak \
+-fsanitize=shift-exponent -fsanitize=shift-base -fsanitize=bounds-strict \
+-fsanitize-address-use-after-scope \
+-std=gnu++1z -Wformat=1 \
+-Wno-attributes"
+
+#source ./tools/ci/flags/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-unittests=yes $*
+export SDL_VIDEODRIVER=dummy
+export ASAN_OPTIONS=detect_leaks=0:detect_stack_use_after_return=true:strict_init_order=true:detect_invalid_pointer_pairs=1
+export LSAN_OPTIONS=suppressions=$(pwd)/tools/ci/scripts/lsansuppression_tests.txt
+run_make_check
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_sdl2_tests_gcov.sh b/tools/ci/jobs/gcc8_sdl2_tests_gcov.sh
new file mode 100755
index 000000000..23912b771
--- /dev/null
+++ b/tools/ci/jobs/gcc8_sdl2_tests_gcov.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$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/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-unittests=yes --with-sdl2 --with-gcov $*
+export SDL_VIDEODRIVER=dummy
+run_make_check
+run_gcov gcov-8 gcc-8_SDL2
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_silent.sh b/tools/ci/jobs/gcc8_silent.sh
new file mode 100755
index 000000000..be3f272dc
--- /dev/null
+++ b/tools/ci/jobs/gcc8_silent.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \
+-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \
+-std=gnu++1z -Wformat=1 \
+-Wno-attributes -fno-omit-frame-pointer"
+
+source ./tools/ci/flags/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure $*
+run_make
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_tests.sh b/tools/ci/jobs/gcc8_tests.sh
new file mode 100755
index 000000000..ef8aebd40
--- /dev/null
+++ b/tools/ci/jobs/gcc8_tests.sh
@@ -0,0 +1,33 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$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/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-unittests=yes $*
+export SDL_VIDEODRIVER=dummy
+run_make_check
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_tests_gcov.sh b/tools/ci/jobs/gcc8_tests_gcov.sh
new file mode 100755
index 000000000..cc3606676
--- /dev/null
+++ b/tools/ci/jobs/gcc8_tests_gcov.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="$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/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-unittests=yes --with-gcov $*
+export SDL_VIDEODRIVER=dummy
+run_make_check
+run_gcov gcov-8 gcc-8
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0
diff --git a/tools/ci/jobs/gcc8_tests_simd.sh b/tools/ci/jobs/gcc8_tests_simd.sh
new file mode 100755
index 000000000..9c82afb7c
--- /dev/null
+++ b/tools/ci/jobs/gcc8_tests_simd.sh
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+export CC=gcc-8
+export CXX=g++-8
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc8.log
+
+source ./tools/ci/scripts/init.sh
+
+# remove -flto -fwhole-program because gcc bug with lto + target attribute
+
+export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O5 -pipe -Wstrict-aliasing=2 \
+-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \
+-ffast-math -funswitch-loops \
+-funsafe-loop-optimizations \
+-march=native -fsched-pressure
+-std=gnu++1z -Wformat=1 \
+-fno-var-tracking -Wno-attributes"
+
+source ./tools/ci/flags/gcc8.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-unittests=yes $*
+export SDL_VIDEODRIVER=dummy
+run_make_check
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0