Summary: Change the travis platform to Java and install Node via nvm instead. This manually reinstalls buck and then publishes a snapshot if it builds and tests correctly. Reviewed By: emilsjolander, danielbuechele Differential Revision: D7567862 fbshipit-source-id: fabdbbb13117ab8ead4eb9f10402a71d30f29c12
51 lines
1.6 KiB
Bash
51 lines
1.6 KiB
Bash
set -e
|
|
|
|
function download() {
|
|
if hash curl 2>/dev/null; then
|
|
curl -s -L -o "$2" "$1"
|
|
elif hash wget 2>/dev/null; then
|
|
wget -O "$2" "$1"
|
|
else
|
|
echo >&2 "No supported download tool installed. Please get either wget or curl."
|
|
exit
|
|
fi
|
|
}
|
|
|
|
function installsdk() {
|
|
PROXY_ARGS=""
|
|
if [[ ! -z "$HTTPS_PROXY" ]]; then
|
|
PROXY_HOST="$(echo $HTTPS_PROXY | cut -d : -f 1,1)"
|
|
PROXY_PORT="$(echo $HTTPS_PROXY | cut -d : -f 2,2)"
|
|
PROXY_ARGS="--proxy=http --proxy_host=$PROXY_HOST --proxy_port=$PROXY_PORT"
|
|
fi
|
|
|
|
echo y | "$ANDROID_HOME"/tools/bin/sdkmanager $PROXY_ARGS "$@"
|
|
}
|
|
|
|
function installAndroidSDK {
|
|
if [[ ! -d "$HOME/android-sdk" ]]; then
|
|
TMP=/tmp/sdk$$.zip
|
|
download 'https://dl.google.com/android/repository/tools_r25.2.3-linux.zip' $TMP
|
|
unzip -qod "$HOME/android-sdk" $TMP
|
|
rm $TMP
|
|
fi
|
|
|
|
export ANDROID_NDK_REPOSITORY=$HOME/android-ndk
|
|
if [[ ! -d "$ANDROID_NDK_REPOSITORY/android-ndk-r15c" ]]; then
|
|
TMP=/tmp/ndk$$.zip
|
|
mkdir -p "$ANDROID_NDK_REPOSITORY"
|
|
download 'https://dl.google.com/android/repository/android-ndk-r15c-linux-x86_64.zip' $TMP
|
|
unzip -qod "$ANDROID_NDK_REPOSITORY" "$TMP"
|
|
rm $TMP
|
|
fi
|
|
|
|
export ANDROID_HOME=$HOME/android-sdk
|
|
export PATH="$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$PATH"
|
|
|
|
mkdir -p $ANDROID_HOME/licenses/
|
|
echo > $ANDROID_HOME/licenses/android-sdk-license
|
|
echo -n d56f5187479451eabf01fb78af6dfcb131a6481e > $ANDROID_HOME/licenses/android-sdk-license
|
|
|
|
installsdk 'build-tools;25.0.3' 'build-tools;26.0.2' 'platforms;android-25' 'platforms;android-26' 'ndk-bundle' 'extras;android;m2repository'
|
|
}
|