forked from tinganho/l10ns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (29 loc) · 797 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
sudo: required
dist: trusty
language: cpp
script:
- mkdir debug && cd debug
- cmake -DCMAKE_CXX_COMPILER=$COMPILER .. && make
- cd .. && ./bin/run-tests
# Handle git submodules by ourselves.
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules.
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
matrix:
include:
- compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
- cmake
- libboost-all-dev
- libjsonrpccpp-dev
- libjsonrpccpp-tools
env: COMPILER=clang++-3.7