.travis.yml 4.8 KB
Newer Older
1
2
language: cpp
sudo: false
3
4
5
matrix:
  include:
  - os: linux
6
7
8
    env: PYTHON=2.7 CPP=11 GCC=4.8
    addons:
      apt:
9
10
        sources: [ubuntu-toolchain-r-test, kubuntu-backports]
        packages: [g++-4.8, cmake]
11
  - os: linux
12
13
14
    env: PYTHON=3.5 CPP=11 GCC=4.8
    addons:
      apt:
15
16
17
18
19
20
21
        sources: [ubuntu-toolchain-r-test, kubuntu-backports, deadsnakes]
        packages: [g++-4.8, cmake, python3.5-dev]
  - sudo: true
    services: docker
    env: PYTHON=2.7 CPP=14 GCC=6
  - sudo: true
    services: docker
22
    env: PYTHON=3.5 CPP=14 GCC=6 DEBUG=1
23
24
25
  - sudo: true
    services: docker
    env: PYTHON=3.5 CPP=17 GCC=7
26
27
  - os: osx
    osx_image: xcode7.3
28
    env: PYTHON=2.7 CPP=14 CLANG
29
30
  - os: osx
    osx_image: xcode7.3
31
    env: PYTHON=3.6 CPP=14 CLANG
Wenzel Jakob's avatar
Wenzel Jakob committed
32
33
34
35
36
37
38
  # Test a PyPy 2.7 nightly build
  - os: linux
    env: PYPY=1 PYTHON=2.7 CPP=11 GCC=4.8
    addons:
      apt:
        sources: [ubuntu-toolchain-r-test, kubuntu-backports]
        packages: [g++-4.8, cmake]
39
40
41
42
43
44
45
46
  # A barebones build makes sure everything still works without optional deps (numpy/scipy/eigen)
  # and also tests the automatic discovery functions in CMake (Python version, C++ standard).
  - os: linux
    env: BAREBONES
    addons:
      apt:
        sources: [ubuntu-toolchain-r-test, kubuntu-backports]
        packages: [g++-4.8, cmake]
47
    install: pip install pytest
48
49
50
  # Documentation build:
  - os: linux
    language: docs
51
    env: DOCS STYLE LINT
52
53
54
    install:
    - pip install --upgrade sphinx sphinx_rtd_theme flake8 pep8-naming
    - pip install docutils==0.12
55
56
57
    script:
    - make -C docs html SPHINX_OPTIONS=-W
    - tools/check-style.sh
58
    - flake8
59
60
  allow_failures:
    - env: PYTHON=3.5 CPP=17 GCC=7
61
    - env: PYTHON=2.7 CPP=14 GCC=6 # Temporary until python >2.7.13-rc1 migrates to debian testing
62
    - env: PYTHON=3.6 CPP=14 CLANG # Temporary until binary wheels of numpy and scipy become available on brew Python 3.6
Wenzel Jakob's avatar
Wenzel Jakob committed
63
64
65
cache:
  directories:
  - $HOME/.cache/pip
66
  - $HOME/Library/Caches/pip
67
68
before_install:
- |
69
70
71
72
  # Configure build variables
  if [ "$TRAVIS_OS_NAME" = "linux" ]; then
    if [ -z "$GCC" ]; then export GCC=4.8; fi
    export CXX=g++-$GCC CC=gcc-$GCC;
73
74
75
    if [ "$GCC" = "6" ]; then export DOCKER=debian:testing
    elif [ "$GCC" = "7" ]; then export DOCKER=debian:experimental APT_GET_EXTRA="-t experimental"
    fi
76
77
78
79
80
  elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
    export CXX=clang++ CC=clang;
  fi
  if [ -n "$CPP" ]; then export CPP=-std=c++$CPP; fi
  if [ "${PYTHON:0:1}" = "3" ]; then export PY=3; fi
Wenzel Jakob's avatar
Wenzel Jakob committed
81
82
83
84
85
  if [ -n "$PYPY" ]; then
    curl http://buildbot.pypy.org/nightly/trunk/pypy-c-jit-latest-linux64.tar.bz2 | tar -xj
    export PYPY_BINARY=$(echo `pwd`/pypy-c-jit*/bin/pypy)
    export CMAKE_EXTRA_ARGS="-DPYTHON_EXECUTABLE:FILEPATH=$PYPY_BINARY"
  fi
86
  if [ -n "$DEBUG" ]; then export CMAKE_EXTRA_ARGS="-DCMAKE_BUILD_TYPE=Debug"; fi
87
- |
Wenzel Jakob's avatar
Wenzel Jakob committed
88
89
90
91
92
  # Initialize environment
  if [ -n "$PYPY" ]; then
    $PYPY_BINARY -m ensurepip
    $PYPY_BINARY -m pip install pytest
  fi
93
94
95
96
97
98
99
  if [ -n "$DOCKER" ]; then
    docker pull $DOCKER
    export containerid=$(docker run --detach --tty \
      --volume="$PWD":/pybind11 --workdir=/pybind11 \
      --env="CC=$CC" --env="CXX=$CXX" --env="DEBIAN_FRONTEND=$DEBIAN_FRONTEND" \
      --env=GCC_COLORS=\  \
      $DOCKER)
100
    docker exec --tty "$containerid" sh -c 'for s in 0 15; do sleep $s; apt-get update && apt-get -qy dist-upgrade && break; done'
101
    export SCRIPT_RUN_PREFIX="docker exec --tty $containerid"
102
  else
103
104
105
106
    if [ "$TRAVIS_OS_NAME" = "linux" ]; then
      pip install --user --upgrade pip virtualenv
      virtualenv -p python$PYTHON venv
    elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
107
108
      if [ "$PY" = "3" ]; then
        brew update; brew install python$PY;
109
110
111
112
      else
        curl -fsSL -O https://bootstrap.pypa.io/get-pip.py
        sudo -H python get-pip.py
      fi
113
114
      pip$PY install --user --upgrade pip virtualenv
      python$PY -m virtualenv venv
115
    fi
116
    source venv/bin/activate
117
  fi
118
install:
119
- |
120
121
  # Install dependencies
  if [ -n "$DOCKER" ]; then
122
123
124
125
    docker exec --tty "$containerid" sh -c "for s in 0 15; do sleep \$s; \
      apt-get -qy --no-install-recommends $APT_GET_EXTRA install \
        python$PY-dev python$PY-pytest python$PY-scipy \
        libeigen3-dev cmake make g++-$GCC && break; done"
126
  else
127
    pip install numpy scipy pytest
128

129
    wget -q -O eigen.tar.gz https://bitbucket.org/eigen/eigen/get/3.3.0.tar.gz
130
    tar xzf eigen.tar.gz
131
    export CMAKE_EXTRA_ARGS="${CMAKE_EXTRA_ARGS} -DCMAKE_INCLUDE_PATH=$PWD/eigen-eigen-26667be4f70b"
132
  fi
133
script:
134
135
- $SCRIPT_RUN_PREFIX cmake ${CMAKE_EXTRA_ARGS}
    -DPYBIND11_PYTHON_VERSION=$PYTHON
136
    -DPYBIND11_CPP_STANDARD=$CPP
137
    -DPYBIND11_WERROR=ON
Dean Moldovan's avatar
Dean Moldovan committed
138
- $SCRIPT_RUN_PREFIX make pytest -j 2
139
140
- $SCRIPT_RUN_PREFIX make test_cmake_build
after_failure: cat tests/test_cmake_build/*.log
141
142
after_script:
- if [ -n "$DOCKER" ]; then docker stop "$containerid"; docker rm "$containerid"; fi