How do I install PyPy on appveyor? -
i have python extension needs compiled against pypy interpreter on windows-based appveyor continuous integration service. how pypy in environment?
add powershell commands "install" phase of build:
(new-object net.webclient).downloadfile('https://bitbucket.org/pypy/pypy/downloads/pypy3-2.4.0-win32.zip', "$env:appveyor_build_folder\pypy3-2.4.0-win32.zip") 7z x pypy3-2.4.0-win32.zip | out-null $env:path = "$env:appveyor_build_folder\pypy3-2.4.0-win32;$env:path"
then can call pypy.exe
anywhere in build.
Comments
Post a Comment