forked from pyenv/pyenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pyenv#737 from Samureus/pypy3.5-c-jit-latest
Pypy3.5-c-jit-latest nightly builds (please review)
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
plugins/python-build/share/python-build/pypy3.5-c-jit-latest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
echo | ||
colorize 1 "WARNING" | ||
echo ": This may eat your kittens/ affect timespace in alternate dimensions/" | ||
echo "cause you to complain more. Nightly builds are meant for testing only." | ||
echo "The PyPy team is interested in reports of what's already implemented, see:" | ||
echo | ||
echo "https://bitbucket.org/pypy/extradoc/src/c70f20cfb870/planning/py3.5/?at=extradoc" | ||
echo | ||
echo "for the latest status updates. To report bugs/regressions, please see:" | ||
echo | ||
echo "http://doc.pypy.org/en/latest/faq.html#how-should-i-report-a-bug" | ||
echo | ||
|
||
case "$(pypy_architecture 2>/dev/null || true)" in | ||
#"linux" ) | ||
# install_nightly_package "pypy-c-jit-latest-linux" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-linux.tar.bz2" "pypy-c-jit-*-linux" "pypy" verify_py27 ensurepip | ||
# ;; | ||
#"linux-armel" ) | ||
# install_nightly_package "pypy-c-jit-latest-linux-armel" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-linux-armel.tar.bz2" "pypy-c-jit-*-linux-armel" "pypy" verify_py27 ensurepip | ||
# ;; | ||
#"linux-armhf" ) | ||
# if [[ "$(cat /etc/issue 2>/dev/null || true)" == "Raspbian"* ]]; then | ||
# install_nightly_package "pypy-c-jit-latest-linux-armhf-raspbian" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-linux-armhf-raspbian.tar.bz2" "pypy-c-jit-*-linux-armhf-raspbian" "pypy" verify_py27 ensurepip | ||
# else | ||
# install_nightly_package "pypy-c-jit-latest-linux-armhf-raring" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-linux-armhf-raring.tar.bz2" "pypy-c-jit-*-linux-armhf-raring" "pypy" verify_py27 ensurepip | ||
# fi | ||
# ;; | ||
"linux64" ) | ||
install_nightly_package "pypy3.5-c-jit-latest-linux64" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-linux64.tar.bz2" "pypy-c-jit-*-linux64" "pypy" verify_py35 ensurepip | ||
;; | ||
#"osx64" ) | ||
# install_nightly_package "pypy-c-jit-latest-osx64" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-osx64.tar.bz2" "pypy-c-jit-*-osx64" "pypy" verify_py27 ensurepip | ||
# ;; | ||
#"freebsd64" ) | ||
# install_nightly_package "pypy-c-jit-latest-freebsd64" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-freebsd64.tar.bz2" "pypy-c-jit-*-freebsd64" "pypy" verify_py27 ensurepip | ||
# ;; | ||
#"win32" ) | ||
# install_zip "pypy-c-jit-latest-win32" "http://buildbot.pypy.org/nightly/py3.5/pypy-c-jit-latest-win32.zip" "pypy" verify_py27 ensurepip | ||
# ;; | ||
* ) | ||
{ echo | ||
colorize 1 "ERROR" | ||
echo ": The latest nightly build of PyPy 3.5 is not available for $(pypy_architecture 2>/dev/null || true)," | ||
echo "Please check http://buildbot.pypy.org/nightly/py3.5/ for previous builds." | ||
echo | ||
} >&2 | ||
exit 1 | ||
;; | ||
esac |