Skip to content

Instantly share code, notes, and snippets.

@onyxmueller
Last active November 16, 2015 18:30
Show Gist options
  • Save onyxmueller/8483a162a76bb10e864c to your computer and use it in GitHub Desktop.
Save onyxmueller/8483a162a76bb10e864c to your computer and use it in GitHub Desktop.
Example CircleCI Configuration For Building a Fork of Google's CastVideos-android Repo
# This is an example CircleCI configuration file for building a fork of
# Google's CastVideos-android repo (https://github.com/googlecast/CastVideos-android)
#
# To try it:
# 1) Google's CastVideos-android repo: https://github.com/googlecast/CastVideos-android
# 2) Copy this file to your fork.
# 3) Add your fork as a project to CircleCI
general:
branches:
only:
- master
dependencies:
override:
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,build-tools-23.0.0,android-23,extra-google-m2repository,extra-google-google_play_services,extra-android-support,extra-android-m2repository
- git clone --recursive [email protected]:googlecast/CastCompanionLibrary-android.git ../CastCompanionLibrary
test:
override:
- ./gradlew assembleDebug
- cp build/outputs/apk/CastVideos-android-debug.apk $CIRCLE_ARTIFACTS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment