lint-up-wrapper.sh 954 B

123456789101112131415161718192021222324252627282930313233343536
  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. echo "Branch: $3"
  15. if [ $3 = "master" -a $returnValue -ne 1 ]; then
  16. echo "New master at: https://nextcloud.kaminsky.me/index.php/s/tXwtChzyqMj6I8v"
  17. curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/droneLogs/master.html --upload-file build/reports/lint/lint.html
  18. exit 0
  19. else
  20. if [ -e $6 ]; then
  21. 6="master-"$(date +%F)
  22. fi
  23. echo "New results at https://nextcloud.kaminsky.me/index.php/s/tXwtChzyqMj6I8v ->" $6.html
  24. curl -u $4:$5 -X PUT https://nextcloud.kaminsky.me/remote.php/webdav/droneLogs/$6.html --upload-file build/reports/lint/lint.html
  25. if [ $returnValue -eq 2 ]; then
  26. exit 0
  27. else
  28. exit $returnValue
  29. fi
  30. fi