-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.travis.yml
40 lines (38 loc) · 910 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
language: generic
matrix:
include:
- os: osx
osx_image: xcode11.4
addons:
homebrew:
packages:
- boost
- erlang
- python
- ant
- openssl
- os: linux
sudo: false
addons:
apt:
sources:
- boost-latest
packages:
- automake
- clang
- libboost-all-dev
- python3
- erlang
- erlang-dev
- ant
script:
- env | grep TRAVIS
- clang++ -v
- 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then CXX=clang++ ./configure --with-openssl=/usr/local/opt/openssl; fi'
- 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CXX=clang++ ./configure; fi'
- touch TAGS.root TAGS.contrib
- make
- make cpp
- make python
- 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make python3; fi'
- make java