Merge pull request #3868 from daniellee/circleci_triggerpacker

Triggers grafana packer CircleCI build after successful build of master branch
This commit is contained in:
Daniel Lee 2016-01-27 21:03:00 +01:00
commit 6c4791b48d
2 changed files with 17 additions and 0 deletions

View File

@ -27,3 +27,10 @@ test:
# js tests
- ./node_modules/grunt-cli/bin/grunt test
- npm run coveralls
deployment:
master:
branch: master
owner: grafana
commands:
- ./trigger_grafana_packer.sh ${TRIGGER_GRAFANA_PACKER_CIRCLECI_TOKEN}

10
trigger_grafana_packer.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
_circle_token=$1
trigger_build_url=https://circleci.com/api/v1/project/grafana/grafana-packer/tree/master?circle-token=${_circle_token}
curl \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--request POST ${trigger_build_url}