From 196a79a88c216fb5316e224c3c94b13d88f97b26 Mon Sep 17 00:00:00 2001 From: Alinson Xavier Date: Mon, 14 Mar 2016 06:32:47 -0400 Subject: [PATCH] Add CircleCI config file --- circle.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 circle.yml diff --git a/circle.yml b/circle.yml new file mode 100644 index 000000000..87496af48 --- /dev/null +++ b/circle.yml @@ -0,0 +1,15 @@ +checkout: + post: + - git submodule sync + - git submodule update --init + +test: + override: + - emulator -avd circleci-android22 -no-audio -no-window: + background: true + parallel: true + - circle-android wait-for-boot + - adb shell input keyevent 82 + - ./gradlew connectedAndroidTest + - cp -r my-project/build/outputs $CIRCLE_ARTIFACTS + - cp -r my-project/build/outputs/androidTest-results/* $CIRCLE_TEST_REPORTS \ No newline at end of file