Skip to content

Instantly share code, notes, and snippets.

@cam72cam
Forked from pcreux/complete.sh
Last active August 29, 2015 14:09
Show Gist options
  • Save cam72cam/2672acc2a6caf13dbf0d to your computer and use it in GitHub Desktop.
Save cam72cam/2672acc2a6caf13dbf0d to your computer and use it in GitHub Desktop.
# specs and cukes results are stored in JUnit format under test-reports
if [ -f SUCCESS ]; then
curl -H "Authorization: token MY_TOKEN" --request POST --data '{"state": "success", "description": "Success!", "target_url": "${bamboo.buildResultsUrl}"}' https://api.github.com/repos/USER/REPO/statuses/${bamboo.repository.revision.number} > /dev/null
else
curl -H "Authorization: token MY_TOKEN" --request POST --data '{"state": "failure", "description": "Failed!", "target_url": "${bamboo.buildResultsUrl}"}' https://api.github.com/repos/USER/REPO/statuses/${bamboo.repository.revision.number} > /dev/null
rm SUCCESS
fi
touch SUCCESS
curl -H "Authorization: token MY_TOKEN" --request POST --data '{"state": "pending", "description": "Build is running", "target_url": "${bamboo.buildResultsUrl}"}' https://api.github.com/repos/USER/REPO/statuses/${bamboo.repository.revision.number} > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment