diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-23 23:51:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-23 23:51:57 +0300 |
commit | 2bdfe73eb4e2cff9d44becc33c1f8b7fb17d83b0 (patch) | |
tree | fef738d1e886a3ab9e0bfb1cdce6974ffc7e6287 /.gitlab-ci.yml | |
parent | efa94494536fc459819d31296ccc9a3e309f6673 (diff) | |
download | evol-hercules-2bdfe73eb4e2cff9d44becc33c1f8b7fb17d83b0.tar.gz evol-hercules-2bdfe73eb4e2cff9d44becc33c1f8b7fb17d83b0.tar.bz2 evol-hercules-2bdfe73eb4e2cff9d44becc33c1f8b7fb17d83b0.tar.xz evol-hercules-2bdfe73eb4e2cff9d44becc33c1f8b7fb17d83b0.zip |
Add gcc 5 and clang 3.9 for i386 arch into .gitlab-ci.yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 791bcbe..e45feaf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,12 @@ gcc-5: - ./tools/ci/jobs/gcc5.sh --enable-werror image: debian:unstable +gcc-5-i386: + stage: build + script: + - ./tools/ci/jobs/gcc5.sh --enable-werror + image: vicamo/debian:sid-i386 + gcc-6: stage: build script: @@ -44,6 +50,12 @@ clang-3.9: - ./tools/ci/jobs/clang39.sh --enable-werror image: debian:unstable +clang-3.9-i386: + stage: build + script: + - ./tools/ci/jobs/clang39.sh --enable-werror + image: vicamo/debian:sid-i386 + # tests # reports |