forked from ElementsProject/libwally-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
51 lines (50 loc) · 983 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
git:
depth: 5
branches:
only:
- master
language: c
sudo: required
os:
- linux
- osx
dist: trusty
compiler:
- clang
- gcc
addons:
apt:
packages:
- llvm-dev
- python
- python-dev
- python3
- python3-dev
- swig
- gcc-multilib
matrix:
include:
- os: linux
compiler: clang
env: HOST=i686-linux-gnu
- os: linux
compiler: gcc
env: HOST=i686-linux-gnu
- compiler: gcc
os: linux
env: PYTHON_VERSION=3.4
- compiler: clang
os: linux
env: DEBUG_WALLY=--enable-debug
- compiler: clang
os: linux
env: ENABLE_ELEMENTS=--enable-elements
before_script:
- ./tools/cleanup.sh && ./tools/autogen.sh
before_install:
- ./tools/travis_install.sh
script:
- ./tools/travis_build.sh
- if [[ "$CC" == "clang" ]]; then ./tools/build_js_bindings.sh; fi
notifications:
email: false