Browse Source
Before uploading failed reports check if secrets are set
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
pull/8060/head
tobiasKaminsky
2 months ago
No known key found for this signature in database
GPG Key ID: E00D4D47D0C5AF7
1 changed files with
5 additions and
0 deletions
-
scripts/uploadReport.sh
|
|
@ -52,6 +52,11 @@ BRANCH_TYPE=$BRANCH-$TYPE |
|
|
|
|
|
|
|
set -e |
|
|
|
|
|
|
|
if [ -z $USER ] || [ -z $PASS ]; then |
|
|
|
echo "USER or PASS is empty!" |
|
|
|
exit 1 |
|
|
|
fi |
|
|
|
|
|
|
|
if [ $TYPE = "IT" ]; then |
|
|
|
FOLDER=build/reports/androidTests/connected/flavors/GPLAY |
|
|
|
elif [ $TYPE = "Unit" ]; then |
|
|
|