Tell Drone to use CLang.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2020-02-12 19:57:15 +01:00
parent 2dea2e6cd0
commit f4449cc101
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 6 additions and 0 deletions

View File

@ -5,12 +5,18 @@ type: docker
steps:
- name: test-debug-linux
image: deukhoofd/linux64builder
environment:
CC: /usr/bin/clang
CXX: /usr/bin/clang++
commands:
- cmake -DCMAKE_BUILD_TYPE=Debug . -B build-debug
- cmake --build build-debug --target all -- -j 4
- build-debug/CreatureLibTests -s --durations yes --use-colour yes
- name: test-release-linux
image: deukhoofd/linux64builder
environment:
CC: /usr/bin/clang
CXX: /usr/bin/clang++
commands:
- cmake -DCMAKE_BUILD_TYPE=Release . -B build-release
- cmake --build build-release --target all -- -j 4