gitlab-ci: workaround "ImportError: No module named 'packaging'"

https://github.com/pypa/setuptools/issues/937

fdroid/ci-images#1
This commit is contained in:
Hans-Christoph Steiner 2017-02-06 17:28:07 +01:00
parent 4929349555
commit 36272656fc
2 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,8 @@ image: fdroid/ci:server-20161223
test:
script:
- mkdir -p /usr/lib/python3.4/site-packages/
# workaround https://github.com/pypa/setuptools/issues/937
- pip3 install setuptools==33.1.1
- pip3 install -e .
- cd tests
- ./complete-ci-tests

View File

@ -56,6 +56,8 @@ python3 setup.py sdist
rm -rf $WORKSPACE/env
pyvenv $WORKSPACE/env
. $WORKSPACE/env/bin/activate
# workaround https://github.com/pypa/setuptools/issues/937
pip3 install setuptools==33.1.1
pip3 install dist/fdroidserver-*.tar.gz
# run tests in new pip+pyvenv install
@ -68,6 +70,8 @@ cd $WORKSPACE
rm -rf $WORKSPACE/env
pyvenv $WORKSPACE/env
. $WORKSPACE/env/bin/activate
# workaround https://github.com/pypa/setuptools/issues/937
pip3 install setuptools==33.1.1
pip3 install -e $WORKSPACE
python3 setup.py install