1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

buildserver: remove provision-pip

This was installing one python(2!) module. pip is installed in
provision-apt-get-install now.
This commit is contained in:
Marcus Hoffmann 2018-11-27 04:03:33 +01:00
parent 90a1703ccc
commit e3a25ad3f2
2 changed files with 0 additions and 16 deletions

View File

@ -80,8 +80,6 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", path: "provision-android-sdk"
config.vm.provision "shell", path: "provision-android-ndk",
args: ["/home/vagrant/android-ndk"]
config.vm.provision "shell", path: "provision-pip",
args: ["compare-locales"]
config.vm.provision "shell", path: "provision-gradle"
end

View File

@ -1,14 +0,0 @@
#!/bin/bash
echo $0
set -e
set -x
# cache pypi downloads
if [ -z $PIP_DOWNLOAD_CACHE ]; then
export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
fi
apt-get install --yes --no-install-recommends python-pip
pip install --upgrade $@