Skip to content

Commit

Permalink
Run with build cache by default (#1596)
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Mar 2, 2023
2 parents 2f436db + 771d5e3 commit 6789a1d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
with:
gradle-home-cache-cleanup: true
- name: spotlessCheck
run: ./gradlew spotlessCheck --build-cache
run: ./gradlew spotlessCheck
- name: assemble testClasses
run: ./gradlew assemble testClasses --build-cache
run: ./gradlew assemble testClasses
build:
needs: sanityCheck
strategy:
Expand Down Expand Up @@ -71,13 +71,13 @@ jobs:
gradle-home-cache-cleanup: true
- name: build (maven-only)
if: matrix.kind == 'maven'
run: ./gradlew :plugin-maven:build -x spotlessCheck --build-cache
run: ./gradlew :plugin-maven:build -x spotlessCheck
- name: build (everything-but-maven)
if: matrix.kind == 'gradle'
run: ./gradlew build -x spotlessCheck --build-cache -PSPOTLESS_EXCLUDE_MAVEN=true
run: ./gradlew build -x spotlessCheck -PSPOTLESS_EXCLUDE_MAVEN=true
- name: test npm
if: matrix.kind == 'npm'
run: ./gradlew testNpm --build-cache
run: ./gradlew testNpm
- name: junit result
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
Expand Down

0 comments on commit 6789a1d

Please sign in to comment.