Skip to content

tell JVM to use less memory when testing #3650

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ anchor_build: &anchor_build

anchor_unittest: &anchor_unittest
name: Run unit tests
command: mvn -B -DtrimStackTrace=false -fae --quiet -DskipITs install -P release
command: mvn -B -DtrimStackTrace=false -fae --quiet -DskipITs test -P release

anchor_docker: &anchor_docker
docker:
- image: circleci/openjdk:8-jdk
environment:
TERM: dumb
MAVEN_OPTS: -Xmx256m

anchor_auth_vars: &anchor_auth_vars
environment:
Expand All @@ -32,7 +33,7 @@ jobs:
- image: maven:3.5.2-jdk-7
environment:
TERM: dumb
MAVEN_OPTS: -Xmx1024m
MAVEN_OPTS: -Xmx512m
steps:
- checkout
- run:
Expand Down