Skip to content

Commit aedb7f7

Browse files
committed
Fix CircleCI config
1 parent 7a1f81e commit aedb7f7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ commands:
1010
setup_android:
1111
steps:
1212
- restore_cache:
13-
key: v1-gradle-cache-{{ checksum "build.gradle" }}-{{ checksum "studyplus-android-sdk2/build.gradle" }}
13+
key: v1-gradle-cache-{{ checksum "build.gradle" }}-{{ checksum "studyplus-android-sdk/build.gradle" }}
1414
- run:
1515
name: Download Dependencies
1616
command: ./gradlew androidDependencies
1717
- save_cache:
1818
paths:
1919
- ~/.gradle
20-
key: v1-gradle-cache-{{ checksum "build.gradle" }}-{{ checksum "studyplus-android-sdk2/build.gradle" }}
20+
key: v1-gradle-cache-{{ checksum "build.gradle" }}-{{ checksum "studyplus-android-sdk/build.gradle" }}
2121
unit_test:
2222
steps:
2323
- run:
2424
name: Run Tests
25-
command: ./gradlew studyplus-android-sdk2:lint studyplus-android-sdk2:test
25+
command: ./gradlew studyplus-android-sdk:lint studyplus-android-sdk:test
2626
- store_artifacts:
27-
path: studyplus-android-sdk2/build/reports
27+
path: studyplus-android-sdk/build/reports
2828
destination: reports
2929
- store_test_results:
30-
path: studyplus-android-sdk2/build/test-results
30+
path: studyplus-android-sdk/build/test-results
3131

3232
setup_bundle:
3333
steps:

Dangerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ warn("A pull request must have some assignees") if github.pr_json["assignee"].ni
2828
# Android Lint
2929
#
3030
####
31-
android_lint.gradle_task = "studyplus-android-sdk2:lint"
32-
android_lint.report_file = "studyplus-android-sdk2/build/reports/lint-results.xml"
31+
android_lint.gradle_task = "studyplus-android-sdk:lint"
32+
android_lint.report_file = "studyplus-android-sdk/build/reports/lint-results.xml"
3333
android_lint.filtering = true
3434
android_lint.lint(inline_mode: true)

0 commit comments

Comments
 (0)