Skip to content

Commit

Permalink
fix(ci): Disable gradle configuration cache creation in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Niedermann <[email protected]>
  • Loading branch information
stefan-niedermann committed Jan 19, 2024
1 parent 4366590 commit be41f5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
check-latest: true
cache: 'gradle'
- name: Unit tests
run: bash ./gradlew test --stacktrace
run: bash ./gradlew test --stacktrace --no-configuration-cache

aar:
name: Generate AAR
Expand All @@ -43,7 +43,7 @@ jobs:
check-latest: true
cache: 'gradle'
- name: Build debug AAR
run: bash ./gradlew assemble --stacktrace
run: bash ./gradlew assemble --stacktrace --no-configuration-cache
- name: Upload AAR
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit be41f5c

Please sign in to comment.