try excluding stress tests from build

This commit is contained in:
Ken Stevens 2019-06-13 15:21:03 -04:00
parent 2bf680509b
commit 19dd7ebc2e
2 changed files with 11 additions and 1 deletions

View File

@ -655,7 +655,7 @@
<runOrder>alphabetical</runOrder>
<argLine>@{argLine} -Dfile.encoding=UTF-8 -Xmx20484M -Xss128M -XX:MetaspaceSize=512M -XX:MaxMetaspaceSize=2048M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC</argLine>
<forkCount>0.6C</forkCount>
<excludes>StressTest*</excludes>
<excludes>*StressTest*</excludes>
</configuration>
</plugin>
<plugin>

View File

@ -125,6 +125,16 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<runOrder>alphabetical</runOrder>
<argLine>@{argLine} -Dfile.encoding=UTF-8 -Xmx20484M -Xss128M -XX:MetaspaceSize=512M -XX:MaxMetaspaceSize=2048M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC</argLine>
<forkCount>0.6C</forkCount>
<excludes>*StressTest*</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>