mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
a80b032081
- NOT reindenting all files. Just choosing one style in files that were using multiple.
72 lines
2.1 KiB
Bash
Executable File
72 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export ERROR_LOG="/tmp/error.log"
|
|
|
|
function report_error_to_github
|
|
{
|
|
if [ $? -eq 0 ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
if [ -z $CIRCLE_PR_NUMBER ]
|
|
then
|
|
CIRCLE_PR_NUMBER="${CIRCLE_PULL_REQUEST//[^0-9]/}"
|
|
fi
|
|
|
|
ERROR_MSG=$(cat $ERROR_LOG)
|
|
|
|
echo $ERROR_MSG
|
|
|
|
if [ ! -z $CI ]
|
|
then
|
|
echo "posting error message to github"
|
|
post_error_to_github
|
|
fi
|
|
}
|
|
|
|
function post_error_to_github
|
|
{
|
|
if [ -z $CIRCLE_PR_NUMBER ]
|
|
then
|
|
CIRCLE_PR_NUMBER="${CIRCLE_PULL_REQUEST//[^0-9]/}"
|
|
fi
|
|
|
|
GITHUB_API_URL="https://api.github.com/repos/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME/issues/$CIRCLE_PR_NUMBER/comments"
|
|
|
|
ESCAPED_ERROR_MSG=$(cat -e $ERROR_LOG | sed 's/\\/\\\\/g' | sed 's/"/\\\"/g')
|
|
|
|
FORMATTED_ERROR_MSG=$(echo $ESCAPED_ERROR_MSG | sed 's/\$/\\n/g' | tr -d '\n')
|
|
|
|
curl --request POST \
|
|
--url $GITHUB_API_URL \
|
|
--header 'accept: application/vnd.github.v3+json' \
|
|
--header 'content-type: application/json' \
|
|
-u stackenbotten:$GITHUB_ACCESS_TOKEN \
|
|
--data "{\"body\": \"There was an error when running \`$CIRCLE_JOB\` for commit \`$CIRCLE_SHA1\`:\n\`\`\`\n$FORMATTED_ERROR_MSG\n\`\`\`\nPlease check that your changes are working as intended.\"}"
|
|
|
|
post_review_comment_to_github
|
|
}
|
|
|
|
function post_review_comment_to_github
|
|
{
|
|
GITHUB_API_URL="https://api.github.com/repos/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME/pulls/$CIRCLE_PR_NUMBER/comments"
|
|
|
|
sed -i 1d $ERROR_LOG
|
|
|
|
while read line
|
|
do
|
|
ERROR_PATH=$(echo $line | grep -oE ".*\.cpp")
|
|
ERROR_LINE=$(echo $line | grep -oE "[0-9]*")
|
|
|
|
curl --request POST \
|
|
--url $GITHUB_API_URL \
|
|
--header 'accept: application/vnd.github.v3+json, application/vnd.github.comfort-fade-preview+json' \
|
|
--header 'content-type: application/json' \
|
|
-u stackenbotten:$GITHUB_ACCESS_TOKEN \
|
|
--data "{\"commit_id\": \"$CIRCLE_SHA1\", \"path\": \"$ERROR_PATH\", \"line\": $ERROR_LINE, \"side\": \"RIGHT\", \"body\": \"Coding style error\"}"
|
|
done < $ERROR_LOG
|
|
}
|
|
|
|
trap report_error_to_github EXIT
|