forked from conan-io/conan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (31 loc) · 832 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
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
os: linux
sudo: required
dist: trusty
env:
- CONAN_COMPILER=gcc CONAN_COMPILER_VERSION=4.8
matrix:
include:
- language: generic
os: osx
env: PYVER=py27 CONAN_COMPILER=apple-clang CONAN_COMPILER_VERSION=6.0 CONAN_LOGGING_LEVEL=20
- language: generic
os: osx
env: PYVER=py36 CONAN_COMPILER=apple-clang CONAN_COMPILER_VERSION=6.0 CONAN_LOGGING_LEVEL=20
# command to install dependencies
install:
- ./.ci/travis/install.sh
before_script:
- export PYTHONPATH=$PYTHONPATH:$(pwd)
- export CONAN_LOGGING_LEVEL=20
# command to run tests
script:
- ulimit -n 2048 # Error with py3 and OSX, max file descriptors
- ./.ci/travis/run.sh
after_success:
- bash <(curl -s https://codecov.io/bash)