This is an automated email from the ASF dual-hosted git repository. toulmean pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git
commit 811963c24b0c4dff79781c6531c9de02ed2affa0 Author: Antoine Toulme <[email protected]> AuthorDate: Wed Apr 29 22:59:50 2020 -0700 use no-daemon for gradle --- .github/workflows/master-pr-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/master-pr-build.yml b/.github/workflows/master-pr-build.yml index ecb12b9..fe0762f 100644 --- a/.github/workflows/master-pr-build.yml +++ b/.github/workflows/master-pr-build.yml @@ -55,15 +55,15 @@ jobs: key: ${{ runner.os }}-m2-${{ hashFiles('**/dependency-versions.gradle') }} restore-keys: ${{ runner.os }}-m2 - name: gradle checks - run: ./gradlew spotlessCheck checkLicenses + run: ./gradlew --no-daemon spotlessCheck checkLicenses - name: gradle assemble - run: ./gradlew assemble -x test + run: ./gradlew --no-daemon assemble -x test - uses: actions/upload-artifact@v1 with: name: Libs path: build/libs - name: gradle test - run: ./gradlew test + run: ./gradlew --no-daemon test - uses: actions/upload-artifact@v1 with: name: Reports --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
