Skip to content

Commit

Permalink
Clean in between assemble and check on CI
Browse files Browse the repository at this point in the history
  - Avoids issues until google/ksp#2231 is released
  • Loading branch information
eygraber committed Nov 24, 2024
1 parent 89dfb8a commit 80d2e88
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ jobs:
- run:
name: Build
command: ./gradlew assemble
- run: # clean to avoid issues until https://github.com/google/ksp/pull/2231 is released
name: Clean
command: ./gradlew clean
- run:
name: Run Tests
command: ./gradlew check --continue
Expand All @@ -84,6 +87,9 @@ jobs:
- run:
name: Build
command: ./gradlew assemble
- run: # clean to avoid issues until https://github.com/google/ksp/pull/2231 is released
name: Clean
command: ./gradlew clean
- run:
name: Run Tests
command: ./gradlew checkApple --continue
Expand Down

0 comments on commit 80d2e88

Please sign in to comment.