We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 109d2b6 commit 921877fCopy full SHA for 921877f
.circleci/config.yml
@@ -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
12
+ name: Get submodules
13
+ command: git submodule update --init --recursive
14
15
+ name: Build
16
+ command: mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=../sdk/ .. && make && make install && cd ..
17
18
+ name: Zip the SDK
19
+ command: ls && zip -r sdk.zip sdk/
20
+ - store_artifacts:
21
+ path: sdk.zip
22
23
+ path: sdk/lib/libserver_modloader.so
0 commit comments