summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wray <jason@mapbox.com>2019-02-25 16:29:30 -0800
committerJason Wray <jason@mapbox.com>2019-02-26 13:09:03 -0800
commit29d1d0cf31a5736f855f7cd266d8e468502cbf60 (patch)
tree0a1d64a9151b513604b9d41a5f55b2f1464f6e27
parentcfef7f33196c710713827a5ea1f27640d9193899 (diff)
downloadqtlocation-mapboxgl-29d1d0cf31a5736f855f7cd266d8e468502cbf60.tar.gz
[ios, build] Trigger automated site and docs generation during releases
-rw-r--r--circle.yml1
-rwxr-xr-xplatform/ios/scripts/trigger-external-deploy-steps.sh34
2 files changed, 35 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml
index 6424205279..422308dd39 100644
--- a/circle.yml
+++ b/circle.yml
@@ -988,6 +988,7 @@ jobs:
export VERSION_TAG=${CIRCLE_TAG}
export GITHUB_TOKEN=${DANGER_GITHUB_API_TOKEN}
platform/ios/scripts/deploy-packages.sh
+ platform/ios/scripts/trigger-external-deploy-steps.sh
- save-dependencies
- collect-xcode-build-logs
- upload-xcode-build-logs
diff --git a/platform/ios/scripts/trigger-external-deploy-steps.sh b/platform/ios/scripts/trigger-external-deploy-steps.sh
new file mode 100755
index 0000000000..c1ee7c783f
--- /dev/null
+++ b/platform/ios/scripts/trigger-external-deploy-steps.sh
@@ -0,0 +1,34 @@
+#!/usr/bin/env bash
+
+set -euo pipefail
+
+function step { >&2 echo -e "\033[1m\033[36m* $@\033[0m"; }
+function finish { >&2 echo -en "\033[0m"; }
+trap finish EXIT
+
+SDK_FLAVOR=${SDK_FLAVOR:-"maps"}
+
+step "Triggering automated site and documentation generation for ${SDK_FLAVOR} SDK ${VERSION_TAG}"
+
+request_body="{
+ \"request\": {
+ \"message\": \"[${SDK_FLAVOR}] ${VERSION_TAG} automated site and documentation generation\",
+ \"config\": {
+ \"merge_mode\": \"deep_merge\",
+ \"env\": {
+ \"SDK_FLAVOR\": \"${SDK_FLAVOR}\",
+ \"RELEASE_TAG\": \"${VERSION_TAG}\"
+ }
+ }
+ }
+}"
+
+step "Making request…"
+
+curl -s -X POST \
+ -H "Content-Type: application/json" \
+ -H "Accept: application/json" \
+ -H "Travis-API-Version: 3" \
+ -H "Authorization: token ${TRAVISCI_API_TOKEN}" \
+ -d "${request_body}" \
+ https://api.travis-ci.com/repo/mapbox%2Fios-sdk/requests