Skip to content

Commit

Permalink
Merge pull request #45 from OutpostUniverse/addClangBuild
Browse files Browse the repository at this point in the history
Add Linux Clang build
  • Loading branch information
DanRStevens authored Feb 29, 2020
2 parents 4fcece0 + 1f92f1a commit dfbde0e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit dfbde0e

Please sign in to comment.