File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -69,12 +69,18 @@ matrix:
69
69
- os : osx
70
70
osx_image : xcode9
71
71
env : PYTHON=3.7 CPP=14 CLANG DEBUG=1
72
- # Test a PyPy 2.7 build
72
+ # Test a PyPy 2.7 v5.8 build
73
73
- os : linux
74
74
env : PYPY=5.8 PYTHON=2.7 CPP=11 GCC=4.8
75
75
addons :
76
76
apt :
77
77
packages : [libblas-dev, liblapack-dev, gfortran]
78
+ # Test a PyPy 2.7 v6.0 build
79
+ - os : linux
80
+ env : PYPY=6.0 PYTHON=2.7 CPP=11 GCC=4.8
81
+ addons :
82
+ apt :
83
+ packages : [libblas-dev, liblapack-dev, gfortran]
78
84
# Build in 32-bit mode and tests against the CMake-installed version
79
85
- sudo : true
80
86
services : docker
@@ -134,6 +140,10 @@ before_install:
134
140
curl -fSL https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.8.0-linux64.tar.bz2 | tar xj
135
141
PY_CMD=$(echo `pwd`/pypy2-v5.8.0-linux64/bin/pypy)
136
142
CMAKE_EXTRA_ARGS+=" -DPYTHON_EXECUTABLE:FILEPATH=$PY_CMD"
143
+ elif [ "$PYPY" = "6.0" ]; then
144
+ curl -fSL https://bitbucket.org/pypy/pypy/downloads/pypy2-v6.0.0-linux64.tar.bz2 | tar xj
145
+ PY_CMD=$(echo `pwd`/pypy2-v6.0.0-linux64/bin/pypy)
146
+ CMAKE_EXTRA_ARGS+=" -DPYTHON_EXECUTABLE:FILEPATH=$PY_CMD"
137
147
else
138
148
PY_CMD=python$PYTHON
139
149
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
You can’t perform that action at this time.
0 commit comments