From 91adaa0da99ad552717acfc0f4f1c0f13a77e614 Mon Sep 17 00:00:00 2001 From: Benedikt Heine Date: Sun, 25 Nov 2018 04:36:02 +0100 Subject: [PATCH] Use clang and GCC simultaneously --- .circleci/config.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fae3b6e..168e376 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,10 +22,13 @@ jobs: - image: bebehei/dunst:<>-dev steps: - checkout - - run: make -j all dunstify - - run: make -j test-valgrind - - run: make clean - - run: make -j test-coverage + - run: make CC=clang -j all dunstify test/test + - run: make CC=clang -j test-valgrind + - run: make clean + - run: make CC=gcc -j all dunstify test/test + - run: make CC=gcc -j test-valgrind + - run: make clean + - run: make -j test-coverage workflows: version: 2