12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/bin/sh
- #1: GIT_USERNAME
- #2: GIT_TOKEN
- #3: BRANCH
- #4: LOG_USERNAME
- #5: LOG_PASSWORD
- #6: DRONE_BUILD_NUMBER
- #7: PULL_REQUEST_NUMBER
- ruby scripts/analysis/lint-up.rb $1 $2 $3
- lintValue=$?
- ./gradlew findbugs
- # exit codes:
- # 0: count was reduced
- # 1: count was increased
- # 2: count stayed the same
- echo "Branch: $3"
- if [ $3 = "master" ]; then
- echo "New findbugs result for master at: https://nextcloud.kaminsky.me/index.php/s/fYZa7NeBsnmFZQD"
- curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/findbugs/master.html --upload-file build/reports/findbugs/findbugs.html
-
- summary=$(sed -n "/<h1>Summary<\/h1>/,/<h1>Warnings<\/h1>/p" build/reports/findbugs/findbugs.html |head -n-1)
- curl -u $4:$5 -X PUT -d $summary http://localhost/nc/remote.php/webdav/findbugs/findbugs.html
-
- if [ $lintValue -ne 1 ]; then
- echo "New lint result for master at: https://nextcloud.kaminsky.me/index.php/s/tXwtChzyqMj6I8v"
- curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/droneLogs/master.html --upload-file build/reports/lint/lint.html
- exit 0
- fi
- else
- if [ -e $6 ]; then
- 6="master-"$(date +%F)
- fi
- echo "New lint results at https://nextcloud.kaminsky.me/index.php/s/tXwtChzyqMj6I8v ->" $6.html
- curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/droneLogs/$6.html --upload-file build/reports/lint/lint.html
-
- echo "New findbugs results at https://nextcloud.kaminsky.me/index.php/s/fYZa7NeBsnmFZQD ->" $6.html
- curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/findbugs/$6.html --upload-file build/reports/findbugs/findbugs.html
-
- # add comment with results
- lintResult="<h1>Lint</h1><table width='500' cellpadding='5' cellspacing='2'><tr class='tablerow0'><td>"$(tail -n1 scripts/analysis/lint-results.txt | cut -f2 -d':' |cut -f1 -d'<')"</td></tr></table>"
- findbugsResult=$(sed -n "/<h1>Summary<\/h1>/,/<h1>Warnings<\/h1>/p" build/reports/findbugs/findbugs.html |head -n-1 | sed s'/<\/a>//'g | sed s'/<a.*>//'g | sed s'/Summary/FindBugs/' | tr "\"" "\'" | tr -d "\n")
- curl -u $1:$2 -X POST https://api.github.com/repos/nextcloud/android/issues/$7/comments -d "{ \"body\" : \"$lintResult $findbugsResult \" }"
-
- if [ $lintValue -eq 2 ]; then
- exit 0
- else
- exit $lintValue
- fi
- fi
|