Skip to content

Commit 921877f

Browse files
committed
CircleCI builds
1 parent 109d2b6 commit 921877f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: buildpack-deps:trusty
6+
steps:
7+
- checkout
8+
- run:
9+
name: Install deps
10+
command: apt-get update && apt-get install -y git cmake zip
11+
- run:
12+
name: Get submodules
13+
command: git submodule update --init --recursive
14+
- run:
15+
name: Build
16+
command: mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=../sdk/ .. && make && make install && cd ..
17+
- run:
18+
name: Zip the SDK
19+
command: ls && zip -r sdk.zip sdk/
20+
- store_artifacts:
21+
path: sdk.zip
22+
- store_artifacts:
23+
path: sdk/lib/libserver_modloader.so

0 commit comments

Comments
 (0)