diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-14 16:31:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-14 16:31:56 +0300 |
commit | 647662a158b5574da66c172b2330b0d29c1cf054 (patch) | |
tree | e6027db6ca308a3847e9b00b54085a51675c0eba | |
parent | 0ee3c0603529e31bd6cc4a4ab41173f33077ee31 (diff) | |
download | plus-647662a158b5574da66c172b2330b0d29c1cf054.tar.gz plus-647662a158b5574da66c172b2330b0d29c1cf054.tar.bz2 plus-647662a158b5574da66c172b2330b0d29c1cf054.tar.xz plus-647662a158b5574da66c172b2330b0d29c1cf054.zip |
Add builds with mse into .gitlab-ci.yml
-rw-r--r-- | .gitlab-ci.yml | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index afbf7eab6..795b498e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1021,6 +1021,20 @@ gcc-7_tests_glibcdebug: tags: - docker +gcc-7_tests_mse: + stage: build + script: + - ./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --enable-stldebug + <<: *job-push + variables: + 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_pugixml_tests: stage: build script: @@ -1080,6 +1094,21 @@ gcc-7_tests_glibcdebug_i386: tags: - docker +gcc-7_tests_mse_i386: + stage: build + script: + - ./tools/ci/jobs/gcc7_tests.sh --without-dyecmd --without-manaplusgame --enable-stldebug + image: vicamo/debian:sid-i386 + <<: *job-push + variables: + 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_sdl2_tests_gcov: stage: build script: @@ -1154,6 +1183,20 @@ gcc-5_sdl2_tests_glibcdebug: tags: - docker +gcc-5_sdl2_tests_mse: + stage: build + script: + - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-manaplusgame --enable-stldebug + <<: *job-push + variables: + PACKAGES: gcc-5 g++-5 + make autoconf automake autopoint gettext + libxml2-dev libcurl4-gnutls-dev libpng-dev + libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev + valgrind + tags: + - docker + gcc-5_sdl2_tests_i386: stage: build script: @@ -1543,6 +1586,60 @@ gcc-7_glibcdebug_sdl2_i386: libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev gdb valgrind netcat-openbsd procps +gcc-7_mse: + stage: build + script: + - ./tools/ci/jobs/gcc7.sh --enable-stldebug --without-dyecmd + - ./tools/ci/scripts/runtests.sh + <<: *job-push + variables: + 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 + gdb valgrind netcat-openbsd procps + +gcc-7_mse_i386: + stage: build + script: + - ./tools/ci/jobs/gcc7.sh --enable-stldebug --without-dyecmd + - ./tools/ci/scripts/runtests.sh + <<: *job-push + image: vicamo/debian:sid-i386 + variables: + 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 + gdb valgrind netcat-openbsd procps + +gcc-7_mse_sdl2: + stage: build + script: + - ./tools/ci/jobs/gcc7.sh --with-sdl2 --enable-stldebug --without-dyecmd + - ./tools/ci/scripts/runtests.sh + <<: *job-push + variables: + PACKAGES: gcc-7 g++-7 + make autoconf automake autopoint gettext + libxml2-dev libcurl4-gnutls-dev libpng-dev + libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev + gdb valgrind netcat-openbsd procps + +gcc-7_mse_sdl2_i386: + stage: build + script: + - ./tools/ci/jobs/gcc7.sh --with-sdl2 --enable-stldebug --without-dyecmd + - ./tools/ci/scripts/runtests.sh + <<: *job-push + image: vicamo/debian:sid-i386 + variables: + PACKAGES: gcc-7 g++-7 + make autoconf automake autopoint gettext + libxml2-dev libcurl4-gnutls-dev libpng-dev + libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev + gdb valgrind netcat-openbsd procps + gcc-5_tarball_tests: stage: build script: |