From 1f92f1a482674df272d9dbbf55838d276ebc541f Mon Sep 17 00:00:00 2001 From: Daniel Stevens Date: Sat, 29 Feb 2020 06:29:33 -0700 Subject: [PATCH] Add Linux Clang build --- .circleci/config.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 63d7131..6ef6cf8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,21 @@ version: 2.1 jobs: - build: + build-linux: docker: - image: outpostuniverse/netfix:1.0 steps: - checkout - run: make --keep-going + build-linux-clang: + docker: + - image: outpostuniverse/netfix:1.0 + steps: + - checkout + - run: make --keep-going CXX=clang++ + +workflows: + build: + jobs: + - build-linux + - build-linux-clang