Skip to content

Commit

Permalink
Build Maven modules in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi committed Oct 13, 2019
1 parent 06afea9 commit 158da18
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Expand Up @@ -3,7 +3,8 @@ jobs:
build:
working_directory: ~/dropwizard
environment:
JAVA_TOOL_OPTIONS: -Xms512m -Xmx2g
JAVA_TOOL_OPTIONS: "-Xms512m -Xmx2g"
MAVEN_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -T 1C"
docker:
- image: circleci/openjdk:11-jdk
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/maven.yml
Expand Up @@ -10,6 +10,8 @@ on:
- release/*
jobs:
build:
env:
MAVEN_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -T 1C"
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -39,7 +39,8 @@ deploy:
# accordingly (http://docs.travis-ci.com/user/encryption-keys/)
env:
global:
- JAVA_OPTS: "'-Xms512m -Xmx2g'"
- JAVA_OPTS: "-Xms512m -Xmx2g"
- MAVEN_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -T 1C"
- secure: "MPnKTiK+9rmqu4R1f2Wozj/DuC8M74THepmvXZKCB6ysCkXPjf7FuWxd29uVdk3Mwb4X90KdzyafOY/GVkVze+/AEorFjIF8FFqBpgGmOG5D9PMKZbF7DNisOShPsITz6+RmYzRTT5xLeRGntAAy6aDWtWTh06CSCypEMT5lD10="
- secure: "WY1zEZD8nwGQXaYDrItkBWmYHhbQ3Ekseq82cTIJedG7zb8KbwpVDUo+6yRf1EPmpnDbRE9N0wgtzQq8B3+X87ZnO6RrEuv6ulkLJJlrwcRmRjfDY9rwRTUUbFZYrHP0fiLedPE6xpokPiO7Y+tRpofVfv2YnxW69GWwQG224KY="
- secure: "W4rGYMaNKW2K1oSJFEr1Q+InQxvW4cdXk6Z1wE+U3CeZd8YeZ8RaaRUVObTMeeUvIzYlbU/stb9dghQMyYKjgaOZE3zWzDV9NP1e83sX7LyCd3q9wufEzI2dwenfXDnVHehG110wXWjUQSAwYyUTXn5bzMvyHSCqwN4X5mGSFzw="
Expand Down
3 changes: 1 addition & 2 deletions appveyor.yml
Expand Up @@ -10,7 +10,7 @@ image:
- 'Visual Studio 2019'
environment:
JAVA_OPTS: '-Xms512m -Xmx2g'
MAVEN_OPTS: ''
MAVEN_OPTS: '-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -T 1C'
matrix:
- JAVA_HOME: 'C:\Program Files\Java\jdk1.8.0'
PATH: '%JAVA_HOME%\bin;%PATH%'
Expand All @@ -26,4 +26,3 @@ test_script:
- mvnw.cmd -V -B -ff verify -Dmaven.javadoc.skip=true -Dmaven.source.skip=true -Dmaven.deploy.skip=true
matrix:
fast_finish: true

0 comments on commit 158da18

Please sign in to comment.