mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
buildserver: unpack NDK with a provisioning shell script
This makes the process closer to ./jenkins-build scripts and .gitlab-ci.yml files. Hopefully it uses less RAM than chef too.
This commit is contained in:
parent
e47396b403
commit
02a835ff95
3 changed files with 37 additions and 52 deletions
36
buildserver/provision-android-ndk
Normal file
36
buildserver/provision-android-ndk
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
|
||||
set -e
|
||||
|
||||
if [ -z $ANDROID_NDK_HOME ]; then
|
||||
echo "ANDROID_NDK_HOME env var must be set!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
test -e $ANDROID_NDK_HOME || mkdir -p $ANDROID_NDK_HOME
|
||||
cd $ANDROID_NDK_HOME
|
||||
|
||||
if [ ! -e $ANDROID_NDK_HOME/r9b ]; then
|
||||
if [ `uname -m` == 'x86_64' ] ; then
|
||||
SUFFIX='_64'
|
||||
else
|
||||
SUFFIX=''
|
||||
fi
|
||||
tar jxvf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX.tar.bz2
|
||||
tar jxvf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX-legacy-toolchains.tar.bz2
|
||||
mv android-ndk-r9b r9b
|
||||
fi
|
||||
|
||||
if [ ! -e $ANDROID_NDK_HOME/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
|
||||
mv android-ndk-r10e r10e
|
||||
fi
|
||||
|
||||
chmod -R a+rX $ANDROID_NDK_HOME/
|
||||
find $ANDROID_NDK_HOME/ -type f -executable -print0 | xargs -0 chmod a+x
|
||||
Loading…
Add table
Add a link
Reference in a new issue