fix exclusion of groups stress and slow (#8399)
* fix exclusion of groups stress and slow Signed-off-by: Olivier Lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
6b00c13990
commit
3ced67f821
|
@ -109,7 +109,7 @@ def mavenBuild(jdk, cmdline, mvnName) {
|
||||||
"MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {
|
"MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {
|
||||||
configFileProvider(
|
configFileProvider(
|
||||||
[configFile(fileId: 'oss-settings.xml', variable: 'GLOBAL_MVN_SETTINGS')]) {
|
[configFile(fileId: 'oss-settings.xml', variable: 'GLOBAL_MVN_SETTINGS')]) {
|
||||||
sh "mvn --no-transfer-progress -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository -Pci -DexcludedGroups=\"stress, slow\" -V -B -e -Djetty.testtracker.log=true $cmdline"
|
sh "mvn --no-transfer-progress -s $GLOBAL_MVN_SETTINGS -Dmaven.repo.local=.repository -Pci -DexcludedGroups=\"external, large-disk-resource, stress, slow\" -V -B -e -Djetty.testtracker.log=true $cmdline"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -2325,7 +2325,6 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<excludedGroups>external, large-disk-resource</excludedGroups>
|
|
||||||
<systemPropertyVariables>
|
<systemPropertyVariables>
|
||||||
<env>ci</env>
|
<env>ci</env>
|
||||||
</systemPropertyVariables>
|
</systemPropertyVariables>
|
||||||
|
|
Loading…
Reference in New Issue