diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-02-12 20:50:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-02-12 20:50:31 +0300 |
commit | f0e20937cd0dfe6093a7f9fc59d07fa9532ad6c9 (patch) | |
tree | 44fa249b5970b66ea30d5c78ac2e383f12182495 | |
parent | 3ec34a184f0bedd71c529be06eccd0b882d2d25a (diff) | |
download | plugin-f0e20937cd0dfe6093a7f9fc59d07fa9532ad6c9.tar.gz plugin-f0e20937cd0dfe6093a7f9fc59d07fa9532ad6c9.tar.bz2 plugin-f0e20937cd0dfe6093a7f9fc59d07fa9532ad6c9.tar.xz plugin-f0e20937cd0dfe6093a7f9fc59d07fa9532ad6c9.zip |
Use debian stetch for ci builds with gcc-6
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 87bb6fd..4002c7e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,13 +48,13 @@ gcc-6: stage: build script: - ./tools/ci/jobs/gcc6.sh --enable-werror - image: debian:unstable + image: debian:stretch .gcc-6-i386: stage: build script: - ./tools/ci/jobs/gcc6.sh --enable-werror - image: vicamo/debian:sid-i386 + image: i386/debian:stretch gcc-7: stage: build @@ -141,7 +141,7 @@ gcc-6-sanitize: stage: test script: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-sanitize - image: debian:unstable + image: debian:stretch gcc-7-sanitize: stage: test @@ -165,7 +165,7 @@ gcc-6_lto-sanitize: stage: test script: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-lto --enable-sanitize - image: debian:unstable + image: debian:stretch gcc-7_lto-sanitize: stage: test @@ -195,7 +195,7 @@ gcc-6_lto: stage: test script: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-lto - image: debian:unstable + image: debian:stretch gcc-7_lto: stage: test @@ -229,4 +229,4 @@ gcc-6_unstable_lto-sanitize: stage: legacy script: - ./tools/ci/jobs/gcc6.sh --enable-werror --enable-lto --enable-sanitize - image: debian:unstable + image: debian:stretch |