Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
b6f79f28
Commit
b6f79f28
authored
Aug 02, 2016
by
Wenzel Jakob
Committed by
GitHub
Aug 02, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #302 from dean0x7d/ci
Improve CI test coverage: eigen, numpy and C++14
parents
3764e284
880a7e4d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
47 deletions
+66
-47
.appveyor.yml
+26
-19
.travis.yml
+39
-27
example/CMakeLists.txt
+1
-1
No files found.
.appveyor.yml
View file @
b6f79f28
version
:
1.0.{build}
version
:
1.0.{build}
os
:
Visual Studio 2015
os
:
Visual Studio 2015
clone_folder
:
C:\projects\pybind11
test
:
off
test
:
off
configuration
:
platform
:
-
Release
-
x86
-
Debug
-
x64
branches
:
only
:
-
master
environment
:
environment
:
CTEST_OUTPUT_ON_FAILURE
:
1
matrix
:
matrix
:
-
CMAKE_PLATFORM
:
"
Visual
Studio
14
2015"
-
CONDA
:
27
PYTHON_DIR
:
"
C:
\\
Python34"
-
CONDA
:
35
CTEST_OUTPUT_ON_FAILURE
:
1
-
CMAKE_PLATFORM
:
"
Visual
Studio
14
2015
Win64"
PYTHON_DIR
:
"
C:
\\
Python34-x64"
CTEST_OUTPUT_ON_FAILURE
:
1
install
:
install
:
-
cinstall
:
python
-
ps
:
|
if ($env:PLATFORM -eq "x64") { $env:CMAKE_ARCH = "x64" }
if ($env:PYTHON) {
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
pip install --disable-pip-version-check --user --upgrade pip wheel
pip install numpy scipy
} elseif ($env:CONDA) {
if ($env:CONDA -eq "27") { $env:CONDA = "" }
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }
$env:PATH = "C:\Miniconda$env:CONDA\;C:\Miniconda$env:CONDA\Scripts\;$env:PATH"
conda install -y -q numpy scipy
}
-
ps
:
|
Start-FileDownload 'http://bitbucket.org/eigen/eigen/get/3.2.9.zip'
7z x 3.2.9.zip -y > $null
$env:CMAKE_INCLUDE_PATH = "eigen-eigen-dc6cfdf9bcec"
build_script
:
build_script
:
-
echo Running cmake...
-
cmake -A "%CMAKE_ARCH%"
-
cd c:\projects\pybind11
-
set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
-
cmake -G "%CMAKE_PLATFORM%" -DPYTHON_EXECUTABLE:FILEPATH=%PYTHON_DIR%/python.exe
-
cmake --build . --config Release --target check -- /v:m /logger:%MSBuildLogger%
-
set MSBuildLogger="C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
-
cmake --build . --config %Configuration% --target check -- /v:m /logger:%MSBuildLogger%
.travis.yml
View file @
b6f79f28
language
:
cpp
language
:
cpp
sudo
:
false
sudo
:
false
matrix
:
include
:
-
os
:
linux
compiler
:
gcc-4.8
env
:
PYTHON=2.7 CPP=11
-
os
:
linux
compiler
:
gcc-4.8
env
:
PYTHON=3.5 CPP=11
-
os
:
osx
osx_image
:
xcode7.3
env
:
PYTHON=2.7 CPP=14
-
os
:
osx
osx_image
:
xcode7.3
env
:
PYTHON=3.5 CPP=14
cache
:
cache
:
directories
:
directories
:
-
$HOME/.cache/pip
-
$HOME/.cache/pip
...
@@ -12,33 +26,31 @@ addons:
...
@@ -12,33 +26,31 @@ addons:
-
kubuntu-backports
# cmake 2.8.12
-
kubuntu-backports
# cmake 2.8.12
packages
:
packages
:
-
g++-4.8
-
g++-4.8
-
g++-4.8-multilib
-
g++-multilib
-
python3.5
-
python3.5
-
python3.5-dev
-
python3.5-dev
-
python3.5-venv
-
python3.5-dev:i386
-
cmake
-
cmake
matrix
:
install
:
include
:
-
|
-
os
:
linux
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
compiler
:
gcc-4.8
export CXX=g++-4.8 CC=gcc-4.8;
install
:
pip install --user --upgrade pip virtualenv
-
pyvenv-3.5 venv
virtualenv -p python$PYTHON venv
-
source venv/bin/activate
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
-
pip install -U pip wheel
if [ "${PYTHON:0:1}" = "3" ]; then
-
pip install numpy
PMAJOR=3; brew update; brew install python$PMAJOR;
script
:
else
-
CXX=g++-4.8 cmake -DPYBIND11_PYTHON_VERSION=3.5
curl -fsSL -O https://bootstrap.pypa.io/get-pip.py
-
CTEST_OUTPUT_ON_FAILURE=TRUE make check -j 2
sudo -H python get-pip.py
-
os
:
osx
fi
compiler
:
clang
pip$PMAJOR install --user --upgrade pip virtualenv
script
:
python$PMAJOR -m virtualenv venv
-
cmake -DPYBIND11_PYTHON_VERSION=2.7
fi
-
CTEST_OUTPUT_ON_FAILURE=TRUE make check -j 2
source venv/bin/activate
#- os: linux
pip install numpy scipy
#compiler: gcc-4.8
-
|
#script:
wget -q -O eigen.tar.gz https://bitbucket.org/eigen/eigen/get/3.2.9.tar.gz
#- pyvenv-3.5 venv
tar xzf eigen.tar.gz
#- cmake -DPYBIND11_PYTHON_VERSION=3.5 -DPYTHON_INCLUDE_DIR:PATH=/usr/include/python3.5m -DPYTHON_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpython3.5m.so -DPYTHON_EXECUTABLE:FILEPATH=`pwd`/venv/bin/python3.5 -DCMAKE_CXX_COMPILER=g++-4.8 -DCMAKE_CXX_FLAGS=-m32
export CMAKE_INCLUDE_PATH=eigen-eigen-dc6cfdf9bcec
#- make -j 2
script
:
-
cmake -DPYBIND11_PYTHON_VERSION=$PYTHON -DPYBIND11_CPP_STANDARD=-std=c++$CPP
-
CTEST_OUTPUT_ON_FAILURE=TRUE make check -j 2
example/CMakeLists.txt
View file @
b6f79f28
...
@@ -34,7 +34,7 @@ find_package(Eigen3 QUIET)
...
@@ -34,7 +34,7 @@ find_package(Eigen3 QUIET)
if
(
EIGEN3_FOUND
)
if
(
EIGEN3_FOUND
)
list
(
APPEND PYBIND11_EXAMPLES eigen.cpp
)
list
(
APPEND PYBIND11_EXAMPLES eigen.cpp
)
message
(
STATUS
"Building Eigen testcase"
)
message
(
STATUS
"Building Eigen
v
${
EIGEN3_VERSION
}
testcase"
)
else
()
else
()
message
(
STATUS
"NOT Building Eigen testcase"
)
message
(
STATUS
"NOT Building Eigen testcase"
)
endif
()
endif
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment