From 58f077353f8f0d18dd2510de342c0e11750a69b8 Mon Sep 17 00:00:00 2001 From: IvanaE <33612255+ebivibe@users.noreply.github.com> Date: Fri, 2 Nov 2018 19:02:09 -0400 Subject: [PATCH] Create config.yml --- config.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 config.yml diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..25569fc --- /dev/null +++ b/config.yml @@ -0,0 +1,32 @@ +version: 2 +jobs: + build: + working_directory: ~/SEG2105-Olympus/OlympusServices + docker: + - image: circleci/android:api-28-alpha + environment: + JVM_OPTS: -Xmx3200m + steps: + - checkout: + path: ~/SEG2105-Olympus + - restore_cache: + key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} + - run: + name: Chmod permissions + command: sudo chmod +x ./gradlew + - run: + name: Download Dependencies + command: ./gradlew androidDependencies + - save_cache: + paths: + - ~/.gradle + key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} + - run: + name: Run UnitTest + command: ./gradlew test + - store_artifacts: + path: app/build/outputs/apk/debug/ + destination: apks/ + - store_test_results: + path: app/build/test-results +