diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-10 01:47:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-10 01:47:26 +0300 |
commit | 4a8621b8f1e3c714136e662157295edaf47c0983 (patch) | |
tree | 969ace64c2e73e8216816f8ec010880698986bec | |
parent | f7155a37bce5695743b8ebb507357d2fce061e3f (diff) | |
download | plus-4a8621b8f1e3c714136e662157295edaf47c0983.tar.gz plus-4a8621b8f1e3c714136e662157295edaf47c0983.tar.bz2 plus-4a8621b8f1e3c714136e662157295edaf47c0983.tar.xz plus-4a8621b8f1e3c714136e662157295edaf47c0983.zip |
Add gcc-7 builds with different O flags into .gitlab-ci.yml
-rw-r--r-- | .gitlab-ci.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 86bb2187e..248c52ec5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -812,6 +812,36 @@ gcc-7_tests_simd: tags: - docker +gcc-7_tests_O0: + stage: build + script: + - ./tools/ci/jobs/gcc7_tests_simd.sh --without-dyecmd --without-manaplusgame + <<: *job-push + variables: + POST_CXXFLAGS: "-O0" + PACKAGES: gcc-7 g++-7 + make autoconf automake autopoint gettext + 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 + valgrind + tags: + - docker + +gcc-7_tests_O1: + stage: build + script: + - ./tools/ci/jobs/gcc7_tests_simd.sh --without-dyecmd --without-manaplusgame + <<: *job-push + variables: + POST_CXXFLAGS: "-O1" + PACKAGES: gcc-7 g++-7 + make autoconf automake autopoint gettext + 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 + valgrind + tags: + - docker + gcc-6_tests_lto: stage: build script: |