mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-23 07:27:22 +01:00
54 lines
891 B
Bash
Executable file
54 lines
891 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e -u
|
|
|
|
NO_RM=''
|
|
|
|
DIR=/tmp/build_$$_dir
|
|
mkdir -p $DIR
|
|
pushd $DIR
|
|
|
|
usage() {
|
|
[ $# -ge 1 ] && echo "Error: $1"
|
|
echo "usage: $0 [--no-rm] # do not remove the build directory"
|
|
echo "builds debug variant from the current tip of github"
|
|
echo "(last modified Jan 2024)"
|
|
exit 1
|
|
}
|
|
|
|
while [ $# -ge 1 ]; do
|
|
case $1 in
|
|
--help)
|
|
usage
|
|
;;
|
|
--no-rm)
|
|
NO_RM=1
|
|
;;
|
|
*)
|
|
usage "unexpected command $1"
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
git clone --branch android_branch https://github.com/eehouse/xwords.git
|
|
cd xwords/xwords4/android
|
|
./gradlew asXw4dDeb
|
|
|
|
APK="$(find . -name '*.apk')"
|
|
if [ -n "${XW4D_UPLOAD}" ]; then
|
|
IFS=","
|
|
for UPPATH in ${XW4D_UPLOAD}; do
|
|
scp "$APK" ${UPPATH}
|
|
echo "uploaded $APK to ${UPPATH}"
|
|
done
|
|
else
|
|
echo "not uploading $APK: XW4D_UPLOAD not set" >&2
|
|
fi
|
|
|
|
popd
|
|
if [ -z "${NO_RM}" ]; then
|
|
rm -rf $DIR
|
|
else
|
|
echo "not removing: $DIR"
|
|
fi
|