diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-22 19:00:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-22 19:00:35 +0300 |
commit | 2da94c63be0dd5ff21442ffdf594d8862ac2c656 (patch) | |
tree | 53f2ae2764a1699849696a2764afa1579158c051 /.gitlab-ci.yml | |
parent | 3719c196c88723c0d9f05a92ef30454429a4b82f (diff) | |
download | ManaVerse-2da94c63be0dd5ff21442ffdf594d8862ac2c656.tar.gz ManaVerse-2da94c63be0dd5ff21442ffdf594d8862ac2c656.tar.bz2 ManaVerse-2da94c63be0dd5ff21442ffdf594d8862ac2c656.tar.xz ManaVerse-2da94c63be0dd5ff21442ffdf594d8862ac2c656.zip |
Add ci tests without opengl support.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e175018c2..a69181278 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -133,6 +133,24 @@ gcc-5_sanitize_tests_i386: tags: - docker +gcc-5_sanitize_no_opengl_tests: + stage: build + script: + - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl + image: debian:unstable + <<: *log-failed-jobs + tags: + - docker + +gcc-5_sanitize_no_opengltests_i386: + stage: build + script: + - ./tools/ci/jobs/gcc5_sanitize_tests.sh --without-opengl + image: vicamo/debian:sid-i386 + <<: *log-failed-jobs + tags: + - docker + gcc-5_tests: stage: build script: @@ -169,6 +187,24 @@ gcc-6_tests_i386: tags: - docker +gcc-6_tests_no_opengl: + stage: build + script: + - ./tools/ci/jobs/gcc6_tests.sh --without-opengl + image: debian:unstable + <<: *log-failed-jobs + tags: + - docker + +gcc-6_tests_no_opengl_i386: + stage: build + script: + - ./tools/ci/jobs/gcc6_tests.sh --without-opengl + image: vicamo/debian:sid-i386 + <<: *log-failed-jobs + tags: + - docker + gcc-5_sdl2_tests: stage: build script: @@ -187,6 +223,24 @@ gcc-5_sdl2_tests_i386: tags: - docker +gcc-5_sdl2_no_opengl_tests: + stage: build + script: + - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl + image: debian:unstable + <<: *log-failed-jobs + tags: + - docker + +gcc-5_sdl2_no_opengl_tests_i386: + stage: build + script: + - ./tools/ci/jobs/gcc5_sdl2_tests.sh --without-opengl + image: vicamo/debian:sid-i386 + <<: *log-failed-jobs + tags: + - docker + gcc-6_lto: stage: build script: |