-
Notifications
You must be signed in to change notification settings - Fork 14
Building and Debugging
https://github.com/FHIR/auto-ig-builder/
https://github.com/FHIR/auto-ig-builder/#after-the-build-is-complete-you-can
https://build.fhir.org/ig/:org/:repo/branches/:branch
(The default branch will also be available directly at https://build.fhir.org/ig/:org/:repo .)
For a build log, see: https://build.fhir.org/ig/:org/:repo/branches/:branch/build.log
(Logs for the default branch will also be available directly at https://build.fhir.org/ig/:org/:repo/build.log .)
In case the build failed, the log will be available in https://build.fhir.org/ig/:org/:repo/branches/:branch/failure/build.log
You can always push a new commit to your repo. But if you want to re-trigger a build for an existing commit, you have a couple of options.
You can use the dashboard at https://fhir.github.io/auto-ig-builder.
Or if you're using web hooks, you can navigate through the GitHub UI within your repo to "Settings > Webhooks > ig-commit-trigger", scroll down to "Recent Deliveries," click the top one, and click "Redeliver.
Or if you want to trigger a build programatically, you can POST to the Webhook URL yourself, specifying a branch, org, and repo. For example with the test-igs org, simple repo, and master branch:
curl -X POST "https://us-central1-fhir-org-starter-project.cloudfunctions.net/ig-commit-trigger" \
-H "Content-type: application/json" \
--data '{"ref": "refs/heads/master", "repository": {"full_name": "test-igs/simple"}}'