Skip to content

Commit

Permalink
Reducing memory needed for the tests
Browse files Browse the repository at this point in the history
This avoids the arm runner crashing without any perf loss.
  • Loading branch information
DavyLandman authored Jan 8, 2025
1 parent e0bfa4d commit 7da84cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Run Tests
# single quotes to help windows deal with argument splitting
run: mvn -B '-Drascal.compile.skip' '-Drascal.tutor.skip' '-Drascal.test.memory=3' test
run: mvn -B '-Drascal.compile.skip' '-Drascal.tutor.skip' '-Drascal.test.memory=2' test

- uses: codecov/codecov-action@v4
continue-on-error: true # sometimes this one fails, that shouldn't stop a build
Expand Down

1 comment on commit 7da84cf

@jurgenvinju
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that I recently set this to 3 (from 2) to experiment if this would fix the crashes. It did not help indeed.

Please sign in to comment.