Skip to content

Commit 6789a1d

Browse files
authored
Run with build cache by default (#1596)
2 parents 2f436db + 771d5e3 commit 6789a1d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
with:
3434
gradle-home-cache-cleanup: true
3535
- name: spotlessCheck
36-
run: ./gradlew spotlessCheck --build-cache
36+
run: ./gradlew spotlessCheck
3737
- name: assemble testClasses
38-
run: ./gradlew assemble testClasses --build-cache
38+
run: ./gradlew assemble testClasses
3939
build:
4040
needs: sanityCheck
4141
strategy:
@@ -71,13 +71,13 @@ jobs:
7171
gradle-home-cache-cleanup: true
7272
- name: build (maven-only)
7373
if: matrix.kind == 'maven'
74-
run: ./gradlew :plugin-maven:build -x spotlessCheck --build-cache
74+
run: ./gradlew :plugin-maven:build -x spotlessCheck
7575
- name: build (everything-but-maven)
7676
if: matrix.kind == 'gradle'
77-
run: ./gradlew build -x spotlessCheck --build-cache -PSPOTLESS_EXCLUDE_MAVEN=true
77+
run: ./gradlew build -x spotlessCheck -PSPOTLESS_EXCLUDE_MAVEN=true
7878
- name: test npm
7979
if: matrix.kind == 'npm'
80-
run: ./gradlew testNpm --build-cache
80+
run: ./gradlew testNpm
8181
- name: junit result
8282
uses: mikepenz/action-junit-report@v3
8383
if: always() # always run even if the previous step fails

0 commit comments

Comments
 (0)