Skip to content

Commit

Permalink
Increase mvn memory within github action (#3689)
Browse files Browse the repository at this point in the history
* Switch to 6g ram
  • Loading branch information
steffenaxer authored Jan 25, 2025
1 parent 90a3fb3 commit 31ed6db
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
files: ./matsim/target/site/jacoco/jacoco.xml

env:
MAVEN_OPTS: -Xmx2g
MAVEN_OPTS: -Xmx6g
2 changes: 1 addition & 1 deletion .github/workflows/deploy-on-pr-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
uses: advanced-security/maven-dependency-submission-action@v4

env:
MAVEN_OPTS: -Xmx2g
MAVEN_OPTS: -Xmx6g
2 changes: 1 addition & 1 deletion .github/workflows/deploy-on-release-created.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
file: matsim/target/matsim-${{ github.event.release.tag_name }}-release.zip
tag: ${{ github.event.release.tag_name }}
env:
MAVEN_OPTS: -Xmx2g
MAVEN_OPTS: -Xmx6g
2 changes: 1 addition & 1 deletion .github/workflows/deploy-weekly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
MAVEN_PASSWORD: ${{ secrets.REPOMATSIM_TOKEN }}

env:
MAVEN_OPTS: -Xmx2g
MAVEN_OPTS: -Xmx6g
2 changes: 1 addition & 1 deletion .github/workflows/full-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: mvn verify -P release --batch-mode --fail-at-end -D'maven.test.redirectTestOutputToFile' -D'matsim.preferLocalDtds=true'

env:
MAVEN_OPTS: -Xmx2g
MAVEN_OPTS: -Xmx6

verify-full-integration-successful:
# always() - to ensure this job is executed (regardless of the status of the previous job)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
working-directory: ${{matrix.module}}

env:
MAVEN_OPTS: -Xmx2g
MAVEN_OPTS: -Xmx6g

verify-all-jobs-successful:
# always() - to ensure this job is executed (regardless of the status of the previous job)
Expand Down

0 comments on commit 31ed6db

Please sign in to comment.