This is an automated email from the ASF dual-hosted git repository. leerho pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit 12753d7049a512626b74a8c174152681e586add1 Author: Lee Rhodes <[email protected]> AuthorDate: Fri Jan 29 17:45:08 2021 -0800 Update maven.yml --- .github/workflows/maven.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 94a1e45..183812c 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -6,10 +6,12 @@ on: pull_request: branches: [ master ] +env: MAVEN_OPTS="-Xmx4g -Xms1g" + jobs: build: + name: Build Job runs-on: ubuntu-latest - env: MAVEN_OPTS="-Xmx4g -Xms1g" steps: - name: Checkout @@ -21,9 +23,10 @@ jobs: java-version: 1.8 #OR 8.0.212 | 16.0.0-ea.28 (.28 is build #) - name: Maven clean test - run: mvn clean test jacoco:report coveralls:report -q -Dgpg.skip=true -DisDebugEnabled=true --batch-mode + run: mvn clean test jacoco:report coveralls:report -q -Dgpg.skip=true -DisDebugEnabled=true --batch-mode --file=pom.xml - name: Coveralls + if: ${{ success() }} uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
