Adjusting Jenkins timeouts
This commit is contained in:
parent
534fb8c427
commit
885bee09a5
|
@ -21,8 +21,8 @@ node('linux') {
|
|||
try
|
||||
{
|
||||
stage 'Compile'
|
||||
timeout(15) {
|
||||
withEnv(mvnEnv) {
|
||||
withEnv(mvnEnv) {
|
||||
timeout(15) {
|
||||
sh "mvn -B clean install -Dtest=None"
|
||||
}
|
||||
}
|
||||
|
@ -34,8 +34,8 @@ node('linux') {
|
|||
try
|
||||
{
|
||||
stage 'Javadoc'
|
||||
timeout(15) {
|
||||
withEnv(mvnEnv) {
|
||||
withEnv(mvnEnv) {
|
||||
timeout(15) {
|
||||
sh "mvn -B javadoc:javadoc"
|
||||
}
|
||||
}
|
||||
|
@ -47,8 +47,8 @@ node('linux') {
|
|||
try
|
||||
{
|
||||
stage 'Test'
|
||||
timeout(60) {
|
||||
withEnv(mvnEnv) {
|
||||
withEnv(mvnEnv) {
|
||||
timeout(60) {
|
||||
// Run test phase / ignore test failures
|
||||
sh "mvn -B install -Dmaven.test.failure.ignore=true"
|
||||
// Report failures in the jenkins UI
|
||||
|
|
Loading…
Reference in New Issue