diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-24 00:49:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-24 00:49:49 +0300 |
commit | c77c4debe8373ab6eb0a53d624be379cde366c3d (patch) | |
tree | 22393c5a97a139210f19c14d73cd79f58055021b /.gitlab-ci.yml | |
parent | 224bf48ca8157c44008e6e7fcf7d1d21a2506149 (diff) | |
download | evol-hercules-c77c4debe8373ab6eb0a53d624be379cde366c3d.tar.gz evol-hercules-c77c4debe8373ab6eb0a53d624be379cde366c3d.tar.bz2 evol-hercules-c77c4debe8373ab6eb0a53d624be379cde366c3d.tar.xz evol-hercules-c77c4debe8373ab6eb0a53d624be379cde366c3d.zip |
Add some ci builds with legacy debian versions and modern compilers.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ea3493d..e5abbd9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ stages: - build - test + - legacy - success - failure @@ -113,6 +114,26 @@ gcc-6_lto: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-lto image: debian:unstable +# legacy + +gcc-4.9_stable_lto-sanitize: + stage: legacy + script: + - ./tools/ci/jobs/gcc49.sh --enable-werror --enable-sanitize --enable-sanitize + image: debian:stable + +gcc-4.9_testing_lto-sanitize: + stage: legacy + script: + - ./tools/ci/jobs/gcc49.sh --enable-werror --enable-sanitize --enable-sanitize + image: debian:testing + +gcc-5_testing_lto-sanitize: + stage: test + script: + - ./tools/ci/jobs/gcc5.sh --enable-werror --enable-sanitize --enable-sanitize + image: debian:testing + # reports success: |