Set up CircleCI

This commit is contained in:
Nemanja Trifunovic 2019-04-14 18:21:29 -04:00
parent 0b45681b60
commit e6da1a36aa

13
.circleci/config.yml Normal file
View file

@ -0,0 +1,13 @@
version: 2
jobs:
build:
docker:
- image: nemtrif/utf8cpp:3.0
steps:
- checkout
- run: git submodule update --init --recursive --remote
- run: mkdir build
- run: cd build && cmake ..
- run: cd build && cmake --build .
- run: cd build && ctest -VV