gitlab-ci: Adding a Clang build.

This commit is contained in:
Jehan 2020-04-22 17:58:42 +02:00
parent 6afec53adc
commit 81ab1d1da1

View File

@ -8,7 +8,7 @@ variables:
## GNU/Linux 64-bit CIs ##
debian/testing:
debian/testing-gcc:
stage: build
artifacts:
expire_in: 1 week
@ -29,6 +29,18 @@ debian/testing:
- make test
- make install
debian/testing-clang:
extends: debian/testing-gcc
variables:
CC: "clang"
CXX: "clang++"
before_script:
- apt-get update
- apt-get install -y --no-install-recommends
build-essential
clang
cmake
## Windows CIs ##
win64: