diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-10 23:58:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-10 23:58:23 +0300 |
commit | 82b764d9a01802ecf445c0a1fda81e721116a0c7 (patch) | |
tree | b57b1349add258c33ceb8e3976b3d22fbb4300d2 /.gitlab-ci.yml | |
parent | bfd0d4d13b9b13b48e99122b271b792d18c2cd8a (diff) | |
download | mv-82b764d9a01802ecf445c0a1fda81e721116a0c7.tar.gz mv-82b764d9a01802ecf445c0a1fda81e721116a0c7.tar.bz2 mv-82b764d9a01802ecf445c0a1fda81e721116a0c7.tar.xz mv-82b764d9a01802ecf445c0a1fda81e721116a0c7.zip |
Add ci job with clang 4.0
Also use none git strategy for success and fail builds.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b36279d60..972672a40 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -378,6 +378,13 @@ cmake_gcc-4.9: tags: - docker +clang-4.0: + stage: prebuild + script: + - ./tools/ci/jobs/clang40.sh + image: debian:unstable + <<: *log-failed-jobs + gcc-5: stage: build script: @@ -3310,6 +3317,7 @@ success: script: - echo "nothing" image: debian:unstable + variables: GIT_STRATEGY=none when: on_success failure: @@ -3317,5 +3325,6 @@ failure: script: - echo "nothing" image: debian:unstable + variables: GIT_STRATEGY=none when: on_failure <<: *log-failed-jobs |