lint-up-wrapper.sh 876 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. #1: GIT_USERNAME
  3. #2: GIT_TOKEN
  4. #3: BRANCH
  5. #4: LOG_USERNAME
  6. #5: LOG_PASSWORD
  7. #6: DRONE_BUILD_NUMBER
  8. ruby scripts/lint/lint-up.rb $1 $2 $3
  9. returnValue=$?
  10. # exit codes:
  11. # 0: count was reduced
  12. # 1: count was increased
  13. # 2: count stayed the same
  14. if [ $3 = "master" -a $returnValue -eq 0 ]; then
  15. echo "New master at: https://nextcloud.kaminsky.me/index.php/s/tXwtChzyqMj6I8v"
  16. curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/droneLogs/master.html --upload-file build/reports/lint/lint.html
  17. exit 0
  18. elif [ $returnValue -eq 1 ]; then
  19. if [ -e $6 ] ; then
  20. 6="master-"$(date +%F)
  21. fi
  22. echo "New results at https://nextcloud.kaminsky.me/index.php/s/tXwtChzyqMj6I8v ->" $6.html
  23. curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/droneLogs/$6.html --upload-file build/reports/lint/lint.html
  24. exit 1
  25. fi