From 80d2e88f675956efadf6fafb07318856fd1fb3a2 Mon Sep 17 00:00:00 2001 From: Eliezer Graber Date: Sat, 23 Nov 2024 18:12:01 -0500 Subject: [PATCH] Clean in between assemble and check on CI - Avoids issues until https://github.com/google/ksp/pull/2231 is released --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 84eead05..343dd740 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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