mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-19 21:30:10 +01:00
all: remove 32-bit buildserver code
We dropped support for 32-bit, so remove all the now unused code and references.
This commit is contained in:
parent
82d09560c6
commit
d375318550
@ -10,33 +10,18 @@ test -e $NDK_BASE || mkdir -p $NDK_BASE
|
||||
cd $NDK_BASE
|
||||
|
||||
if [ ! -e $NDK_BASE/r9b ]; then
|
||||
if [ `uname -m` == 'x86_64' ] ; then
|
||||
SUFFIX='_64'
|
||||
else
|
||||
SUFFIX=''
|
||||
fi
|
||||
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX.tar.bz2
|
||||
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX-legacy-toolchains.tar.bz2
|
||||
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86_64.tar.bz2
|
||||
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86_64-legacy-toolchains.tar.bz2
|
||||
mv android-ndk-r9b r9b
|
||||
fi
|
||||
|
||||
if [ ! -e $NDK_BASE/r10e ]; then
|
||||
if [ `uname -m` == 'x86_64' ] ; then
|
||||
SUFFIX='_64'
|
||||
else
|
||||
SUFFIX=''
|
||||
fi
|
||||
7zr x /vagrant/cache/android-ndk-r10e-linux-x86$SUFFIX.bin > /dev/null
|
||||
7zr x /vagrant/cache/android-ndk-r10e-linux-x86_64.bin > /dev/null
|
||||
mv android-ndk-r10e r10e
|
||||
fi
|
||||
|
||||
if [ ! -e $NDK_BASE/r12b ]; then
|
||||
if [ `uname -m` == 'x86_64' ] ; then
|
||||
SUFFIX='_64'
|
||||
else
|
||||
SUFFIX=''
|
||||
fi
|
||||
7zr x /vagrant/cache/android-ndk-r12b-linux-x86$SUFFIX.bin > /dev/null
|
||||
7zr x /vagrant/cache/android-ndk-r12b-linux-x86_64.bin > /dev/null
|
||||
mv android-ndk-r12b r12b
|
||||
fi
|
||||
|
||||
|
@ -1561,9 +1561,7 @@ applications.
|
||||
@section Setting up a build server
|
||||
|
||||
In addition to the basic setup previously described, you will also need
|
||||
a Vagrant-compatible Debian Testing base box called 'jessie32' (or jessie64
|
||||
for a 64-bit VM, if you want it to be much slower, and require more disk
|
||||
space).
|
||||
a Vagrant-compatible Debian Testing base box called 'jessie64'.
|
||||
|
||||
You can use a different version or distro for the base box, so long as you
|
||||
don't expect any help making it work. One thing to be aware of is that
|
||||
|
@ -3,16 +3,16 @@
|
||||
# You may want to alter these before running ./makebuildserver
|
||||
|
||||
# Name of the base box to use
|
||||
# basebox = "jessie32"
|
||||
# basebox = "jessie64"
|
||||
|
||||
# Location where testing32.box can be found, if you don't already have
|
||||
# it. For security reasons, it's recommended that you make your own
|
||||
# in a secure environment using trusted media (see the manual) but
|
||||
# you can use this default if you like...
|
||||
# baseboxurl = "https://f-droid.org/jessie32.box"
|
||||
# baseboxurl = "https://f-droid.org/jessie64.box"
|
||||
#
|
||||
# or if you have a cached local copy, you can use that first:
|
||||
# baseboxurl = ["file:///home/fdroid/fdroidserver/cache/jessie32.box", "https://f-droid.org/jessie32.box"]
|
||||
# baseboxurl = ["file:///home/fdroid/fdroidserver/cache/jessie64.box", "https://f-droid.org/jessie64.box"]
|
||||
|
||||
# In the process of setting up the build server, many gigs of files
|
||||
# are downloaded (Android SDK components, gradle, etc). These are
|
||||
@ -43,9 +43,6 @@
|
||||
# Debian package proxy server - if you have one
|
||||
# aptproxy = "http://192.168.0.19:8000"
|
||||
|
||||
# Set to True if your base box is 64 bit (e.g. testing32.box isn't)
|
||||
# arch64 = True
|
||||
|
||||
# If this is running on an older machine or on a virtualized system,
|
||||
# it can run a lot slower. If the provisioning fails with a warning
|
||||
# about the timeout, extend the timeout here. (default: 600 seconds)
|
||||
|
Loading…
Reference in New Issue
Block a user