Skip to content

Commit

Permalink
ci: chore: clear cache
Browse files Browse the repository at this point in the history
There seems to be an issue with the current cache for the sonar job.
Clear the cache following: https://support.circleci.com/hc/en-us/articles/115015426888-Clear-project-dependency-cache

Signed-off-by: Marc Nuri <marc@marcnuri.com>
  • Loading branch information
manusa committed Nov 23, 2021
1 parent 73c8dad commit cf9a9ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ jobs:
steps:
- checkout
- restore_cache:
key: jkube-kit-sonar-{{ checksum "pom.xml" }}
key: cachev1-jkube-kit-sonar-{{ checksum "pom.xml" }}
- run: |
MAVEN_OPTS="-Xmx3000m" ./mvnw -B -Pjacoco,sonar clean install
- save_cache:
key: jkube-kit-sonar-{{ checksum "pom.xml" }}
key: cachev1-jkube-kit-sonar-{{ checksum "pom.xml" }}
paths:
- ~/.m2

Expand Down

0 comments on commit cf9a9ba

Please sign in to comment.