Add circleci config
This commit is contained in:
parent
52a7f43778
commit
4fe6482459
24
.circleci/config.yml
Normal file
24
.circleci/config.yml
Normal 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
|
Reference in New Issue
Block a user