Skip to content

Commit

Permalink
Stop disabling Gradle daemon on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tbroyer committed Feb 4, 2024
1 parent 16a9187 commit bf452ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Build with Gradle
id: gradle-build
run: ./gradlew --no-daemon :build-logic:build build --stacktrace
run: ./gradlew :build-logic:build build --stacktrace

- name: Store reports
if: always() && (steps.gradle-build.outcome == 'success' || steps.gradle-build.outcome == 'failure')
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Build with Gradle
id: gradle-build
run: ./gradlew --no-daemon test "-Ptest.java-toolchain=${{ matrix.java }}"
run: ./gradlew test "-Ptest.java-toolchain=${{ matrix.java }}"

- name: Store reports
if: always() && (steps.gradle-build.outcome == 'success' || steps.gradle-build.outcome == 'failure')
Expand Down

0 comments on commit bf452ba

Please sign in to comment.