Add circleci config

This commit is contained in:
F1ssi0N 2018-03-12 21:48:39 +00:00
parent 52a7f43778
commit 4fe6482459

24
.circleci/config.yml Normal file
View File

@ -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