mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-05 19:41:57 +02:00
add a script for uploading to testrun.org
This commit is contained in:
parent
dcff723377
commit
e296fa75c9
1 changed files with 24 additions and 0 deletions
24
scripts/upload-testrun.sh
Executable file
24
scripts/upload-testrun.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
|
||||
VERSION=$1
|
||||
|
||||
if [ -z "$VERSION" ]; then
|
||||
echo "this script uploads test apks testrun.org, both flavours:"
|
||||
echo "- 🍋 gplay (overwrites gplay installs)"
|
||||
echo "- 🍉 dev (can be installed beside gplay)"
|
||||
echo ""
|
||||
echo "usage: ./scripts/upload-testrun.sh <VERSION>"
|
||||
exit
|
||||
fi
|
||||
if [[ ${VERSION:0:1} == "v" ]]; then
|
||||
echo "VERSION must not begin with 'v' here."
|
||||
exit
|
||||
fi
|
||||
|
||||
APKGPLAY="gplay/release/deltachat-gplay-release-$VERSION.apk"
|
||||
APKDEV="build/outputs/apk/fat/debug/deltachat-fat-debug-$VERSION.apk"
|
||||
ls -l $APKGPLAY
|
||||
ls -l $APKDEV
|
||||
read -p "upload these apks to testrun.org? ENTER to continue, CTRL-C to abort."
|
||||
|
||||
scp $APKGPLAY root@testrun.org:/var/www/testrun.org/
|
||||
scp $APKDEV root@testrun.org:/var/www/testrun.org/
|
Loading…
Add table
Add a link
Reference in a new issue