-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test debug build only and reduce output * Gradle 3.3 and android-maven plugin 1.5 * Adds --configure-on-demand option to circle.yml * Adds -PdisablePreDex option to circle.yml * Build and test modules in parallel * Deploy sample apps to AWS on release build only * Publish docs on release build only * Install core lib to local .m2 repo before resolving dependencies * Copy test results into archive folder * Disable Javadoc tasks * Build sample app but do not deploy to s3. Archive APKs on Circle CI. * Update gradle options to limit memory use and dump heap on OOM error * Relative path for artifacts folder * Circle CI syntax for "artifacts" * Test deployment on non-master branch * Revert full build including sample apps to master only
- Loading branch information
Showing
11 changed files
with
59 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Builds and uploads sample apps to S3 on release build only. | ||
|
||
if [[ ${PERFORM_RELEASE} ]] | ||
then | ||
sudo apt-get update; sudo apt-get install s3cmd | ||
printf "[default]\naccess_key = $S3_ACCESS_KEY\n secret_key = $S3_SECRET_KEY" > ~/.s3cfg | ||
scripts/deploy-android-sdk-sample-app.sh | ||
scripts/deploy-places-api-sample-app.sh | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} ]] | ||
then | ||
pip install 'Circle-Tickler == 1.0.1' | ||
tickle-circle mapzen documentation master $CIRCLE_TOKEN | ||
fi |