tweak release scripts

This commit is contained in:
Jason Madden 2016-12-23 05:36:52 -06:00
parent baab99bc00
commit 5f20cc4bfa
No known key found for this signature in database
GPG Key ID: 349F84431A08B99E
2 changed files with 10 additions and 2 deletions

View File

@ -15,16 +15,20 @@ unset CFLAGS
unset CXXFLAGS
unset CPPFLAGS
BASE=`pwd`
BASE=`dirname $BASE`
cd /tmp/relstorage
virtualenv -p $1 `basename $1`
cd `basename $1`
echo "Made tmpenv"
echo `pwd`
source bin/activate
git clone https://github.com/zodb/relstorage
echo cloning $BASE
git clone $BASE
cd relstorage
pip install -U pip
pip install -U setuptools cython greenlet cffi
pip install -U setuptools cffi
pip install -U wheel
python ./setup.py sdist bdist_wheel
cp dist/*whl /tmp/relstorage

View File

@ -19,5 +19,9 @@ mkdir /tmp/relstorage/
# 3.5 is a python.org build, builds a 10_6_intel wheel
./release.sh /usr/local/bin/python3.5
# 3.6 is a python.org build, builds a 10_6_intel wheel
./release.sh /usr/local/bin/python3.6
# PyPy 4.0
./release.sh `which pypy`