From 4fe64824597f96f1574e784885a31e407d50cd97 Mon Sep 17 00:00:00 2001 From: F1ssi0N Date: Mon, 12 Mar 2018 21:48:39 +0000 Subject: [PATCH] Add circleci config --- .circleci/config.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..f876d74 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,24 @@ +version: 2 +jobs: + build: + working_directory: ~/doghook + docker: + - image: ubuntu:rolling + steps: + - run: + name: Install dependencies + command: | + apt-get update -qq + apt-get install -y g++ clang-5.0 cmake git wget ssh patchelf + - checkout + - run: + name: Generate Make files + command: | + premake gmake + - run: + name: Build + command: | + make -j2 + - store_artifacts: + path: ~/dogbook/bin/Debug/libdoghook.so + destination: libdoghook.so \ No newline at end of file