diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9230e9e9c..9ca7977a8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,14 @@ clang-3.9: tags: - docker +gcc-5_c++11_i386: + stage: prebuild + script: + - ./tools/ci/jobs/gcc5_c++11.sh + image: vicamo/debian:sid-i386 + tags: + - docker + gcc-6: stage: prebuild script: @@ -82,14 +90,6 @@ gcc-5_h_all_i386: tags: - docker -gcc-5: - stage: prebuild - script: - - ./tools/ci/jobs/gcc5.sh - image: debian:unstable - tags: - - docker - pngcheck: stage: prebuild script: @@ -276,19 +276,19 @@ cmake_gcc-4.9: tags: - docker -gcc-5_c++11: +gcc-5: stage: build script: - - ./tools/ci/jobs/gcc5_c++11.sh + - ./tools/ci/jobs/gcc5.sh image: debian:unstable tags: - docker -gcc-5_c++11_i386: +gcc-5_c++11: stage: build script: - ./tools/ci/jobs/gcc5_c++11.sh - image: vicamo/debian:sid-i386 + image: debian:unstable tags: - docker |