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