Skip to content

Commit

Permalink
We have more memory on these machines, lets use it
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Jan 20, 2023
1 parent 30de58d commit 242c377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cache: 'maven'

- name: Run Tests
run: mvn -B -Drascal.compile.skip -Drascal.tutor.skip -Drascal.test.memory=7 test
run: mvn -B -Drascal.compile.skip -Drascal.tutor.skip -Drascal.test.memory=14 test

- uses: codecov/codecov-action@v3
continue-on-error: true # sometimes this one fails, that shouldn't stop a build
Expand Down Expand Up @@ -70,11 +70,11 @@ jobs:
- name: Compile & Bootstrap
run: mvn -B compile -Dwebdriver.chrome.driver=/usr/local/bin/chromedriver -Dwebdriver.chrome.browser=`which chrome`
env:
MAVEN_OPTS: "-Xmx7G -Dhttps.protocols=TLSv1.2 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"
MAVEN_OPTS: "-Xmx14G -Dhttps.protocols=TLSv1.2 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"

- name: Test if release # just to be extra sure for a release
if: startsWith(github.ref, 'refs/tags/v')
run: mvn -Drascal.test.memory=7 -Drascal.compile.skip -Drascal.tutor.skip test
run: mvn -Drascal.test.memory=14 -Drascal.compile.skip -Drascal.tutor.skip test

- name: Attach artifact
id: build-artifact
Expand Down

0 comments on commit 242c377

Please sign in to comment.