mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
1b001cf1b5
The prohibition of HTTP causes connection errors on some builds:
IOException: https://dl.google.com/android/repository/addons_list-3.xml
java.net.ConnectException: Connection refused (Connection refused)
IOException: https://dl.google.com/android/repository/addons_list-2.xml
java.net.ConnectException: Connection refused (Connection refused)
IOException: https://dl.google.com/android/repository/addons_list-1.xml
java.net.ConnectException: Connection refused (Connection refused)
Failed to download any source lists!
Partly revert a746917022
.
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
|
|
# version compare magic
|
|
vergte() {
|
|
printf '%s\n%s' "$1" "$2" | sort -C -V -r
|
|
}
|
|
|
|
test -e /opt/gradle/versions || mkdir -p /opt/gradle/versions
|
|
cd /opt/gradle/versions
|
|
for f in /vagrant/cache/gradle-*.zip; do
|
|
ver=`echo $f | sed 's,.*gradle-\([0-9][0-9.]*\).*\.zip,\1,'`
|
|
# only use versions greater or equal 2.2.1
|
|
if vergte $ver 2.2.1 && [ ! -d /opt/gradle/versions/${ver} ]; then
|
|
unzip -qq $f
|
|
mv gradle-${ver} /opt/gradle/versions/${ver}
|
|
fi
|
|
done
|
|
|
|
chmod -R a+rX /opt/gradle
|
|
|
|
test -e /opt/gradle/bin || mkdir -p /opt/gradle/bin
|
|
ln -fs /home/vagrant/fdroidserver/gradlew-fdroid /opt/gradle/bin/gradle
|
|
chown -h vagrant.vagrant /opt/gradle/bin/gradle
|
|
chown vagrant.vagrant /opt/gradle/versions
|
|
chmod 0755 /opt/gradle/versions
|
|
|
|
GRADLE_HOME=/home/vagrant/.gradle
|
|
test -d $GRADLE_HOME/ || mkdir $GRADLE_HOME/
|
|
cat <<EOF > $GRADLE_HOME/gradle.properties
|
|
# builds are not reused, so the daemon is a waste of time
|
|
org.gradle.daemon=false
|
|
|
|
# set network timeouts to 10 minutes
|
|
# https://github.com/gradle/gradle/pull/3371/files
|
|
systemProp.http.connectionTimeout=600000
|
|
systemProp.http.socketTimeout=600000
|
|
systemProp.org.gradle.internal.http.connectionTimeout=600000
|
|
systemProp.org.gradle.internal.http.socketTimeout=600000
|
|
EOF
|
|
|
|
chown -R vagrant.vagrant $GRADLE_HOME/
|
|
chmod -R a+rX $GRADLE_HOME/
|