.travis.yml 8.12 KB
Newer Older
1
language: cpp
2
dist: trusty
3
sudo: false
4
5
matrix:
  include:
6
7
8
9
10
11
12
  # This config does a few things:
  # - Checks C++ and Python code styles (check-style.sh and flake8).
  # - Makes sure sphinx can build the docs without any errors or warnings.
  # - Tests setup.py sdist and install (all header files should be present).
  # - Makes sure that everything still works without optional deps (numpy/scipy/eigen) and
  #   also tests the automatic discovery functions in CMake (Python version, C++ standard).
  - os: linux
13
    dist: xenial # Necessary to run doxygen 1.8.15
14
15
16
    env: STYLE DOCS PIP
    cache: false
    before_install:
17
18
    - pyenv global $(pyenv whence 2to3)  # activate all python versions
    - PY_CMD=python3
19
    - $PY_CMD -m pip install --user --upgrade pip wheel setuptools
20
21
    install:
    - $PY_CMD -m pip install --user --upgrade sphinx sphinx_rtd_theme breathe flake8 pep8-naming pytest
22
23
    - curl -fsSL https://sourceforge.net/projects/doxygen/files/rel-1.8.15/doxygen-1.8.15.linux.bin.tar.gz/download | tar xz
    - export PATH="$PWD/doxygen-1.8.15/bin:$PATH"
24
25
26
27
28
29
30
31
32
33
34
35
    script:
    - tools/check-style.sh
    - flake8
    - $PY_CMD -m sphinx -W -b html docs docs/.build
    - |
      # Make sure setup.py distributes and installs all the headers
      $PY_CMD setup.py sdist
      $PY_CMD -m pip install --user -U ./dist/*
      installed=$($PY_CMD -c "import pybind11; print(pybind11.get_include(True) + '/pybind11')")
      diff -rq $installed ./include/pybind11
    - |
      # Barebones build
36
      cmake -DCMAKE_BUILD_TYPE=Debug -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON -DPYTHON_EXECUTABLE=$(which $PY_CMD)
37
38
39
40
      make pytest -j 2
      make cpptest -j 2
  # The following are regular test configurations, including optional dependencies.
  # With regard to each other they differ in Python version, C++ standard and compiler.
41
  - os: linux
42
43
44
    env: PYTHON=2.7 CPP=11 GCC=4.8
    addons:
      apt:
45
        packages: [cmake=2.\*, cmake-data=2.\*]
46
  - os: linux
47
    env: PYTHON=3.6 CPP=11 GCC=4.8
48
49
    addons:
      apt:
50
51
        sources: [deadsnakes]
        packages: [python3.6-dev python3.6-venv, cmake=2.\*, cmake-data=2.\*]
52
53
  - sudo: true
    services: docker
54
    env: PYTHON=2.7 CPP=14 GCC=6 CMAKE=1
55
56
  - sudo: true
    services: docker
57
    env: PYTHON=3.5 CPP=14 GCC=6 DEBUG=1
58
59
  - sudo: true
    services: docker
60
    env: PYTHON=3.6 CPP=17 GCC=7
61
  - os: linux
62
    env: PYTHON=3.6 CPP=17 CLANG=5.0
63
64
    addons:
      apt:
65
66
        sources: [deadsnakes, llvm-toolchain-trusty-5.0, ubuntu-toolchain-r-test]
        packages: [python3.6-dev python3.6-venv clang-5.0 llvm-5.0-dev, lld-5.0]
67
68
  - os: osx
    osx_image: xcode7.3
69
    env: PYTHON=2.7 CPP=14 CLANG CMAKE=1
70
  - os: osx
71
    osx_image: xcode9
72
    env: PYTHON=3.7 CPP=14 CLANG DEBUG=1
73
  # Test a PyPy 2.7 build
Wenzel Jakob's avatar
Wenzel Jakob committed
74
  - os: linux
75
    env: PYPY=5.8 PYTHON=2.7 CPP=11 GCC=4.8
Wenzel Jakob's avatar
Wenzel Jakob committed
76
77
    addons:
      apt:
78
        packages: [libblas-dev, liblapack-dev, gfortran]
79
  # Build in 32-bit mode and tests against the CMake-installed version
Jason Rhinelander's avatar
Jason Rhinelander committed
80
81
  - sudo: true
    services: docker
82
    env: ARCH=i386 PYTHON=3.5 CPP=14 GCC=6 INSTALL=1
Jason Rhinelander's avatar
Jason Rhinelander committed
83
84
85
86
87
88
89
90
91
    script:
      - |
        $SCRIPT_RUN_PREFIX sh -c "set -e
        cmake ${CMAKE_EXTRA_ARGS} -DPYBIND11_INSTALL=1 -DPYBIND11_TEST=0
        make install
        cp -a tests /pybind11-tests
        mkdir /build-tests && cd /build-tests
        cmake ../pybind11-tests ${CMAKE_EXTRA_ARGS} -DPYBIND11_WERROR=ON
        make pytest -j 2"
Wenzel Jakob's avatar
Wenzel Jakob committed
92
93
cache:
  directories:
94
95
  - $HOME/.local/bin
  - $HOME/.local/lib
96
  - $HOME/.local/include
97
  - $HOME/Library/Python
98
99
before_install:
- |
100
101
  # Configure build variables
  if [ "$TRAVIS_OS_NAME" = "linux" ]; then
Jason Rhinelander's avatar
Jason Rhinelander committed
102
    if [ -n "$CLANG" ]; then
103
      export CXX=clang++-$CLANG CC=clang-$CLANG
104
      EXTRA_PACKAGES+=" clang-$CLANG llvm-$CLANG-dev"
Jason Rhinelander's avatar
Jason Rhinelander committed
105
    else
Jason Rhinelander's avatar
Jason Rhinelander committed
106
      if [ -z "$GCC" ]; then GCC=4.8
107
      else EXTRA_PACKAGES+=" g++-$GCC"
Jason Rhinelander's avatar
Jason Rhinelander committed
108
109
110
      fi
      export CXX=g++-$GCC CC=gcc-$GCC
    fi
111
    if [ "$GCC" = "6" ]; then DOCKER=${ARCH:+$ARCH/}debian:stretch
112
    elif [ "$GCC" = "7" ]; then DOCKER=debian:buster EXTRA_PACKAGES+=" catch python3-distutils" DOWNLOAD_CATCH=OFF
113
    fi
114
115
116
  elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
    export CXX=clang++ CC=clang;
  fi
Jason Rhinelander's avatar
Jason Rhinelander committed
117
118
  if [ -n "$CPP" ]; then CPP=-std=c++$CPP; fi
  if [ "${PYTHON:0:1}" = "3" ]; then PY=3; fi
119
  if [ -n "$DEBUG" ]; then CMAKE_EXTRA_ARGS+=" -DCMAKE_BUILD_TYPE=Debug"; fi
120
- |
Wenzel Jakob's avatar
Wenzel Jakob committed
121
  # Initialize environment
122
123
  set -e
  if [ -n "$DOCKER" ]; then
124
    docker pull $DOCKER
125

Jason Rhinelander's avatar
Jason Rhinelander committed
126
    containerid=$(docker run --detach --tty \
127
128
129
130
      --volume="$PWD":/pybind11 --workdir=/pybind11 \
      --env="CC=$CC" --env="CXX=$CXX" --env="DEBIAN_FRONTEND=$DEBIAN_FRONTEND" \
      --env=GCC_COLORS=\  \
      $DOCKER)
Jason Rhinelander's avatar
Jason Rhinelander committed
131
    SCRIPT_RUN_PREFIX="docker exec --tty $containerid"
132
    $SCRIPT_RUN_PREFIX sh -c 'for s in 0 15; do sleep $s; apt-get update && apt-get -qy dist-upgrade && break; done'
133
  else
134
135
136
    if [ "$PYPY" = "5.8" ]; then
      curl -fSL https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.8.0-linux64.tar.bz2 | tar xj
      PY_CMD=$(echo `pwd`/pypy2-v5.8.0-linux64/bin/pypy)
137
      CMAKE_EXTRA_ARGS+=" -DPYTHON_EXECUTABLE:FILEPATH=$PY_CMD"
138
    else
Jason Rhinelander's avatar
Jason Rhinelander committed
139
      PY_CMD=python$PYTHON
140
141
      if [ "$TRAVIS_OS_NAME" = "osx" ]; then
        if [ "$PY" = "3" ]; then
Jason Rhinelander's avatar
Jason Rhinelander committed
142
          brew update && brew upgrade python
143
144
145
        else
          curl -fsSL https://bootstrap.pypa.io/get-pip.py | $PY_CMD - --user
        fi
146
      fi
147
    fi
148
149
150
151
    if [ "$PY" = 3 ] || [ -n "$PYPY" ]; then
      $PY_CMD -m ensurepip --user
    fi
    $PY_CMD -m pip install --user --upgrade pip wheel
152
  fi
153
  set +e
154
install:
155
- |
156
  # Install dependencies
157
  set -e
158
  if [ -n "$DOCKER" ]; then
159
    if [ -n "$DEBUG" ]; then
160
      PY_DEBUG="python$PYTHON-dbg python$PY-scipy-dbg"
161
      CMAKE_EXTRA_ARGS+=" -DPYTHON_EXECUTABLE=/usr/bin/python${PYTHON}dm"
162
    fi
163
    $SCRIPT_RUN_PREFIX sh -c "for s in 0 15; do sleep \$s; \
164
      apt-get -qy --no-install-recommends install \
165
        $PY_DEBUG python$PYTHON-dev python$PY-pytest python$PY-scipy \
166
        libeigen3-dev libboost-dev cmake make ${EXTRA_PACKAGES} && break; done"
167
  else
168

169
    if [ "$CLANG" = "5.0" ]; then
170
      if ! [ -d ~/.local/include/c++/v1 ]; then
171
        # Neither debian nor llvm provide a libc++ 5.0 deb; luckily it's fairly quick
172
173
        # to build, install (and cache), so do it ourselves:
        git clone --depth=1 https://github.com/llvm-mirror/llvm.git llvm-source
174
175
        git clone https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx -b release_50
        git clone https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi -b release_50
176
177
        mkdir llvm-build && cd llvm-build
        # Building llvm requires a newer cmake than is provided by the trusty container:
178
179
180
        CMAKE_VER=cmake-3.8.0-Linux-x86_64
        curl https://cmake.org/files/v3.8/$CMAKE_VER.tar.gz | tar xz
        ./$CMAKE_VER/bin/cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/.local ../llvm-source
181
182
183
184
185
        make -j2 install-cxxabi install-cxx
        cp -a include/c++/v1/*cxxabi*.h ~/.local/include/c++/v1
        cd ..
      fi
      export CXXFLAGS="-isystem $HOME/.local/include/c++/v1 -stdlib=libc++"
186
      export LDFLAGS="-L$HOME/.local/lib -fuse-ld=lld-$CLANG"
187
188
      export LD_LIBRARY_PATH="$HOME/.local/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
      if [ "$CPP" = "-std=c++17" ]; then CPP="-std=c++1z"; fi
189
    fi
190

191
192
    export NPY_NUM_BUILD_JOBS=2
    echo "Installing pytest, numpy, scipy..."
193
194
    ${PYPY:+travis_wait 30} $PY_CMD -m pip install --user --upgrade pytest numpy scipy \
        ${PYPY:+--extra-index-url https://imaginary.ca/trusty-pypi}
195
    echo "done."
196

197
198
199
200
    mkdir eigen
    curl -fsSL https://bitbucket.org/eigen/eigen/get/3.3.4.tar.bz2 | \
        tar --extract -j --directory=eigen --strip-components=1
    export CMAKE_INCLUDE_PATH="${CMAKE_INCLUDE_PATH:+$CMAKE_INCLUDE_PATH:}$PWD/eigen"
201
  fi
202
  set +e
203
script:
204
205
- $SCRIPT_RUN_PREFIX cmake ${CMAKE_EXTRA_ARGS}
    -DPYBIND11_PYTHON_VERSION=$PYTHON
206
    -DPYBIND11_CPP_STANDARD=$CPP
207
    -DPYBIND11_WERROR=${WERROR:-ON}
208
    -DDOWNLOAD_CATCH=${DOWNLOAD_CATCH:-ON}
Dean Moldovan's avatar
Dean Moldovan committed
209
- $SCRIPT_RUN_PREFIX make pytest -j 2
210
- $SCRIPT_RUN_PREFIX make cpptest -j 2
211
- if [ -n "$CMAKE" ]; then $SCRIPT_RUN_PREFIX make test_cmake_build; fi
212
after_failure: cat tests/test_cmake_build/*.log*
213
214
after_script:
- if [ -n "$DOCKER" ]; then docker stop "$containerid"; docker rm "$containerid"; fi