Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve build performance #298

Merged
merged 16 commits into from
Feb 10, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Publish docs on release build only
ecgreb committed Feb 8, 2017

Verified

This commit was signed with the committer’s verified signature.
luehm Alex Luehm
commit 7e6a2a5cc77d5e58a0ce1e944bc92ff988dfe040
3 changes: 1 addition & 2 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -29,5 +29,4 @@ deployment:
- ./gradlew uploadArchives -PsonatypeUsername=$SONATYPE_NEXUS_SNAPSHOTS_USERNAME -PsonatypePassword=$SONATYPE_NEXUS_SNAPSHOTS_PASSWORD
- ./gradlew aarSize countReleaseDexMethods permissions mapzen-android-sdk:dependencies --configuration compile
- scripts/deploy-samples.sh
- pip install 'Circle-Tickler == 1.0.1'
- tickle-circle mapzen documentation master $CIRCLE_TOKEN
- scripts/publish-docs.sh
9 changes: 9 additions & 0 deletions scripts/publish-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
#
# Triggers mapzen docs build to publish to https://mapzen.com/documentation/.

if [[ ${PERFORM_RELEASE} ]]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

naive question ... when does PERFORM_RELEASE get set?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haha it does not yet! :) I will be adding a script to perform the release using Circle's API similar to this one we use for Eraser Map as part of #279.

then
pip install 'Circle-Tickler == 1.0.1'
tickle-circle mapzen documentation master $CIRCLE_TOKEN
fi