.travis.yml 3.72 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
  - os: osx
    osx_image: xcode7.3
25
    env: PYTHON=2.7 CPP=14 CLANG
26
27
  - os: osx
    osx_image: xcode7.3
28
29
30
31
32
33
34
35
36
    env: PYTHON=3.5 CPP=14 CLANG
  # 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]
37
    install: pip install pytest
38
39
40
  # Documentation build:
  - os: linux
    language: docs
41
    env: DOCS STYLE LINT
42
43
44
    install:
    - pip install --upgrade sphinx sphinx_rtd_theme flake8 pep8-naming
    - pip install docutils==0.12
45
46
47
    script:
    - make -C docs html SPHINX_OPTIONS=-W
    - tools/check-style.sh
48
    - flake8
Wenzel Jakob's avatar
Wenzel Jakob committed
49
50
51
cache:
  directories:
  - $HOME/.cache/pip
52
  - $HOME/Library/Caches/pip
53
54
before_install:
- |
55
56
57
58
59
60
61
62
63
64
  # 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;
    if [ "$GCC" = "6" ]; then export DOCKER=debian:testing CXX=g++ CC=gcc; fi
  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
65
  if [ -n "$DEBUG" ]; then export CMAKE_EXTRA_ARGS="-DCMAKE_BUILD_TYPE=Debug"; fi
66
67
- |
  # Initialize enviornment
68
69
70
71
72
73
74
  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)
75
    docker exec --tty "$containerid" sh -c 'for s in 0 15; do sleep $s; apt-get update && apt-get -qy dist-upgrade && break; done'
76
    export SCRIPT_RUN_PREFIX="docker exec --tty $containerid"
77
  else
78
79
80
81
    if [ "$TRAVIS_OS_NAME" = "linux" ]; then
      pip install --user --upgrade pip virtualenv
      virtualenv -p python$PYTHON venv
    elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
82
83
      if [ "$PY" = "3" ]; then
        brew update; brew install python$PY;
84
85
86
87
      else
        curl -fsSL -O https://bootstrap.pypa.io/get-pip.py
        sudo -H python get-pip.py
      fi
88
89
      pip$PY install --user --upgrade pip virtualenv
      python$PY -m virtualenv venv
90
    fi
91
    source venv/bin/activate
92
  fi
93
install:
94
- |
95
96
  # Install dependencies
  if [ -n "$DOCKER" ]; then
97
    docker exec --tty "$containerid" sh -c "for s in 0 15; do sleep \$s; apt-get -qy --no-install-recommends install \
98
      python$PYTHON-dev python$PY-pytest python$PY-scipy \
99
      libeigen3-dev cmake make g++ && break; done"
100
  else
101
    pip install numpy scipy pytest
102

103
    wget -q -O eigen.tar.gz https://bitbucket.org/eigen/eigen/get/3.3.0.tar.gz
104
    tar xzf eigen.tar.gz
105
    export CMAKE_EXTRA_ARGS="${CMAKE_EXTRA_ARGS} -DCMAKE_INCLUDE_PATH=$PWD/eigen-eigen-26667be4f70b"
106
  fi
107
script:
108
109
- $SCRIPT_RUN_PREFIX cmake ${CMAKE_EXTRA_ARGS}
    -DPYBIND11_PYTHON_VERSION=$PYTHON
110
    -DPYBIND11_CPP_STANDARD=$CPP
111
    -DPYBIND11_WERROR=ON
Dean Moldovan's avatar
Dean Moldovan committed
112
- $SCRIPT_RUN_PREFIX make pytest -j 2
113
114
after_script:
- if [ -n "$DOCKER" ]; then docker stop "$containerid"; docker rm "$containerid"; fi