diff options
-rw-r--r-- | .gitlab-ci.yml | 8 | ||||
-rwxr-xr-x | tools/ci/jobs/gcc6.sh | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a7d4fdcb..510a03d9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -420,6 +420,14 @@ clang-3.9_sdl2: tags: - docker +gcc-6_all: + stage: build + script: + - ./tools/ci/jobs/gcc6.sh --disable-asserts + image: debian:unstable + tags: + - docker + # tests gcc-5_tests: diff --git a/tools/ci/jobs/gcc6.sh b/tools/ci/jobs/gcc6.sh index 072639c63..46d3743ab 100755 --- a/tools/ci/jobs/gcc6.sh +++ b/tools/ci/jobs/gcc6.sh @@ -18,7 +18,7 @@ export CXXFLAGS="-pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \ source ./tools/ci/flags/gcc6.sh do_init -run_configure --enable-werror +run_configure --enable-werror $* run_make source ./tools/ci/scripts/exit.sh |