diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..b3eb5e2 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,17 @@ +version: 2 +jobs: + build: + docker: + - image: enumack/buildcontainers:gcc-8.1 + steps: + - checkout + - run: + name: cd to build dir + command: cd -p build + - run: + name: run CMake + command: cmake -DCMAKE_BUILD_TYPE=Release .. + - run: + name: build project + command: make -j +