- fixed config.yml

Took 3 minutes
This commit is contained in:
2022-02-06 20:41:23 +00:00
parent dff651eb7f
commit 8a2a1b1dba

View File

@@ -51,43 +51,3 @@ workflows:
# Inside the workflow, you define the jobs you want to run. # Inside the workflow, you define the jobs you want to run.
jobs: jobs:
- build-and-test - build-and-test
#version: 2
#jobs:
# build:
# working_directory: ~/code
# docker:
# - image: circleci/android:api-29
# environment:
# - CIRCLE_COMPARE_URL: https://github.com/hmalik144/EasyCC_Master/compare/7e995468c9fdc5528a6d1a5489ba301bb9f14c00...14293254ec6d68b93bba50eea79df8808aec9de9
# - JVM_OPTS: -Xmx3200m
# steps:
# - checkout
# - 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 Tests
# command: ./gradlew lint test
# - store_artifacts:
# path: app/build/reports
# destination: reports
# - store_test_results:
# path: app/build/test-results
#workflows:
# version: 2
# workflow:
# jobs:
# - build