mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 14:45:12 +00:00
Move the style check/barebones config up to the first position on Travis
This runs the most basic tests first and avoids waiting until the very end for style checks. [skip appveyor]
This commit is contained in:
parent
b7c98d21e1
commit
cdf38dc6ba
64
.travis.yml
64
.travis.yml
@ -3,6 +3,40 @@ dist: trusty
|
|||||||
sudo: false
|
sudo: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
# 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
|
||||||
|
env: STYLE DOCS PIP
|
||||||
|
cache: false
|
||||||
|
before_install:
|
||||||
|
- pyenv global system 2.7 3.6
|
||||||
|
- PY_CMD=python3.6
|
||||||
|
- $PY_CMD -m pip install --user --upgrade pip wheel
|
||||||
|
install:
|
||||||
|
- $PY_CMD -m pip install --user --upgrade sphinx sphinx_rtd_theme breathe flake8 pep8-naming pytest
|
||||||
|
- curl -fsSL ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.12.linux.bin.tar.gz | tar xz
|
||||||
|
- export PATH="$PWD/doxygen-1.8.12/bin:$PATH"
|
||||||
|
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
|
||||||
|
cmake -DCMAKE_BUILD_TYPE=Debug -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON
|
||||||
|
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.
|
||||||
- os: linux
|
- os: linux
|
||||||
env: PYTHON=2.7 CPP=11 GCC=4.8
|
env: PYTHON=2.7 CPP=11 GCC=4.8
|
||||||
addons:
|
addons:
|
||||||
@ -54,36 +88,6 @@ matrix:
|
|||||||
mkdir /build-tests && cd /build-tests
|
mkdir /build-tests && cd /build-tests
|
||||||
cmake ../pybind11-tests ${CMAKE_EXTRA_ARGS} -DPYBIND11_WERROR=ON
|
cmake ../pybind11-tests ${CMAKE_EXTRA_ARGS} -DPYBIND11_WERROR=ON
|
||||||
make pytest -j 2"
|
make pytest -j 2"
|
||||||
# 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
|
|
||||||
env: STYLE DOCS PIP PYTHON=3.5
|
|
||||||
cache: false
|
|
||||||
install:
|
|
||||||
- export PATH="~/.local/bin:$PATH"
|
|
||||||
- $PY_CMD -m pip install --user --upgrade sphinx sphinx_rtd_theme breathe flake8 pep8-naming pytest
|
|
||||||
- |
|
|
||||||
curl -fsSL ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.12.linux.bin.tar.gz | tar xz
|
|
||||||
export PATH="$PWD/doxygen-1.8.12/bin:$PATH"
|
|
||||||
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
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Debug -DPYBIND11_WERROR=ON -DDOWNLOAD_CATCH=ON
|
|
||||||
make pytest -j 2
|
|
||||||
make cpptest -j 2
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- $HOME/.local/bin
|
- $HOME/.local/bin
|
||||||
|
Loading…
Reference in New Issue
Block a user