diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-14 18:43:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-14 18:43:21 -0300 |
commit | a1e81506f9bdac931755e0ded2fbcf4f3d68220c (patch) | |
tree | 42ab71f2f343bb9d2846e86c9b0ab4a5589dd828 /.gitlab-ci.yml | |
parent | ab958499730abfe9318f1312effb65775efafd89 (diff) | |
parent | 4d08f967636f9aae862e6d3016a6d5faf0817542 (diff) | |
download | evol-hercules-a1e81506f9bdac931755e0ded2fbcf4f3d68220c.tar.gz evol-hercules-a1e81506f9bdac931755e0ded2fbcf4f3d68220c.tar.bz2 evol-hercules-a1e81506f9bdac931755e0ded2fbcf4f3d68220c.tar.xz evol-hercules-a1e81506f9bdac931755e0ded2fbcf4f3d68220c.zip |
Merge branch 'master' into tmw2
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 102 |
1 files changed, 81 insertions, 21 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4002c7e..7f6c40d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,11 +14,11 @@ gcc-snapshot: - ./tools/ci/jobs/gccsnapshot.sh --enable-werror image: debian:unstable -.gcc-snapshot-i386: +gcc-snapshot-i386: stage: build script: - ./tools/ci/jobs/gccsnapshot.sh --enable-werror - image: vicamo/debian:sid-i386 + image: i386/debian:unstable gcc-4.8: stage: build @@ -32,25 +32,13 @@ gcc-4.9: - ./tools/ci/jobs/gcc49.sh --enable-werror image: debian:jessie -.gcc-5: - stage: build - script: - - ./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: - ./tools/ci/jobs/gcc6.sh --enable-werror image: debian:stretch -.gcc-6-i386: +gcc-6-i386: stage: build script: - ./tools/ci/jobs/gcc6.sh --enable-werror @@ -62,23 +50,47 @@ gcc-7: - ./tools/ci/jobs/gcc7.sh --enable-werror image: debian:unstable -.gcc-7-i386: +gcc-7-i386: stage: build script: - ./tools/ci/jobs/gcc7.sh --enable-werror - image: vicamo/debian:sid-i386 + image: i386/debian:unstable + +gcc-8: + stage: build + script: + - ./tools/ci/jobs/gcc8.sh --enable-werror + image: debian:unstable + +gcc-8-i386: + stage: build + script: + - ./tools/ci/jobs/gcc8.sh --enable-werror + image: i386/debian:unstable + +gcc-9: + stage: build + script: + - ./tools/ci/jobs/gcc9.sh --enable-werror + image: debian:unstable + +gcc-9-i386: + stage: build + script: + - ./tools/ci/jobs/gcc9.sh --enable-werror + image: i386/debian:unstable clang-3.9: stage: build script: - ./tools/ci/jobs/clang39.sh --enable-werror - image: debian:stable + image: debian:stretch .clang-3.9-i386: stage: build script: - ./tools/ci/jobs/clang39.sh --enable-werror - image: vicamo/debian:sid-i386 + image: i386/debian:unstable clang-6: stage: build @@ -90,7 +102,7 @@ clang-6: stage: build script: - ./tools/ci/jobs/clang6.sh --enable-werror - image: vicamo/debian:sid-i386 + image: i386/debian:unstable clang-7: stage: build @@ -102,7 +114,19 @@ clang-7: stage: build script: - ./tools/ci/jobs/clang7.sh --enable-werror - image: vicamo/debian:sid-i386 + image: i386/debian:unstable + +clang-8: + stage: build + script: + - ./tools/ci/jobs/clang8.sh --enable-werror + image: debian:unstable + +clang-8-i386: + stage: build + script: + - ./tools/ci/jobs/clang8.sh --enable-werror + image: i386/debian:unstable # tests @@ -149,6 +173,18 @@ gcc-7-sanitize: - ./tools/ci/jobs/gcc7.sh --enable-werror --enable-sanitize image: debian:unstable +gcc-8-sanitize: + stage: test + script: + - ./tools/ci/jobs/gcc8.sh --enable-werror --enable-sanitize + image: debian:unstable + +gcc-9-sanitize: + stage: test + script: + - ./tools/ci/jobs/gcc9.sh --enable-werror --enable-sanitize + image: debian:unstable + gcc-4.9_lto-sanitize: stage: test script: @@ -173,6 +209,18 @@ gcc-7_lto-sanitize: - ./tools/ci/jobs/gcc7.sh --enable-werror --enable-lto --enable-sanitize image: debian:unstable +gcc-8_lto-sanitize: + stage: test + script: + - ./tools/ci/jobs/gcc8.sh --enable-werror --enable-lto --enable-sanitize + image: debian:unstable + +gcc-9_lto-sanitize: + stage: test + script: + - ./tools/ci/jobs/gcc9.sh --enable-werror --enable-lto --enable-sanitize + image: debian:unstable + gcc-4.8-lto: stage: test script: @@ -203,6 +251,18 @@ gcc-7_lto: - ./tools/ci/jobs/gcc7.sh --enable-werror --enable-lto image: debian:unstable +gcc-8_lto: + stage: test + script: + - ./tools/ci/jobs/gcc8.sh --enable-werror --enable-lto + image: debian:unstable + +gcc-9_lto: + stage: test + script: + - ./tools/ci/jobs/gcc9.sh --enable-werror --enable-lto + image: debian:unstable + # disabled due not support -std=c11 .gcc-4.6: stage: test |