mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
19 lines
561 B
Bash
Executable file
19 lines
561 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
URL=https://nextcloud.kaminsky.me/remote.php/webdav/integrationTests
|
|
ID=$3
|
|
USER=$1
|
|
PASS=$2
|
|
TYPE=$4
|
|
|
|
if [ $TYPE = "IT" ]; then
|
|
cd build/reports/androidTests/connected/flavors/GPLAY
|
|
else
|
|
cd build/reports/tests/testGplayDebugUnitTest
|
|
fi
|
|
|
|
find . -type d -exec curl -u $USER:$PASS -X MKCOL $URL/$ID/$(echo {} | sed s#\./##) \;
|
|
find . -type f -exec curl -u $USER:$PASS -X PUT $URL/$ID/$(echo {} | sed s#\./##) --upload-file {} \;
|
|
|
|
echo "Uploaded failing tests to https://nextcloud.kaminsky.me/index.php/s/XqY52jBr9ZYfDiz -> $ID"
|
|
exit 1
|