From f4449cc1012881da5133e675cf463589b7f710cc Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Wed, 12 Feb 2020 19:57:15 +0100 Subject: [PATCH] Tell Drone to use CLang. --- .drone.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.drone.yml b/.drone.yml index 4464483..9b477f1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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