diff --git a/OlympusServices/app/.circleci/config.yml b/OlympusServices/app/.circleci/config.yml deleted file mode 100644 index 6bffa3c..0000000 --- a/OlympusServices/app/.circleci/config.yml +++ /dev/null @@ -1,32 +0,0 @@ -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 - \ No newline at end of file