diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-21 04:38:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-21 04:38:48 -0300 |
commit | f82924704c28282808c5b437e98f071c1befbfff (patch) | |
tree | 4d8a8c0e20e8ae01d354abca5b0257b80e2c971a | |
parent | 40fa6d72362f1aea9f67e628b10c510234aa2f23 (diff) | |
download | plugin-f82924704c28282808c5b437e98f071c1befbfff.tar.gz plugin-f82924704c28282808c5b437e98f071c1befbfff.tar.bz2 plugin-f82924704c28282808c5b437e98f071c1befbfff.tar.xz plugin-f82924704c28282808c5b437e98f071c1befbfff.zip |
Deprecate clang-6, clang-7 and gcc-7.
Highlight @4144 / {41444d494e} in case he still cares with these build tools.
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f6c40d..2c2cca1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,13 +44,13 @@ gcc-6-i386: - ./tools/ci/jobs/gcc6.sh --enable-werror image: i386/debian:stretch -gcc-7: +.gcc-7: stage: build script: - ./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 @@ -92,7 +92,7 @@ clang-3.9: - ./tools/ci/jobs/clang39.sh --enable-werror image: i386/debian:unstable -clang-6: +.clang-6: stage: build script: - ./tools/ci/jobs/clang6.sh --enable-werror @@ -104,7 +104,7 @@ clang-6: - ./tools/ci/jobs/clang6.sh --enable-werror image: i386/debian:unstable -clang-7: +.clang-7: stage: build script: - ./tools/ci/jobs/clang7.sh --enable-werror @@ -167,7 +167,7 @@ gcc-6-sanitize: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-sanitize image: debian:stretch -gcc-7-sanitize: +.gcc-7-sanitize: stage: test script: - ./tools/ci/jobs/gcc7.sh --enable-werror --enable-sanitize @@ -203,7 +203,7 @@ gcc-6_lto-sanitize: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-lto --enable-sanitize image: debian:stretch -gcc-7_lto-sanitize: +.gcc-7_lto-sanitize: stage: test script: - ./tools/ci/jobs/gcc7.sh --enable-werror --enable-lto --enable-sanitize @@ -245,7 +245,7 @@ gcc-6_lto: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-lto image: debian:stretch -gcc-7_lto: +.gcc-7_lto: stage: test script: - ./tools/ci/jobs/gcc7.sh --enable-werror --enable-lto |