Marking stages with jdk name too (helping in jenkins UI)
This commit is contained in:
parent
0b89ffd055
commit
8728f2b2c7
|
@ -24,7 +24,7 @@ def getFullBuild(jdk, os) {
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
stage('Checkout') {
|
stage("Checkout - ${jdk}") {
|
||||||
checkout scm
|
checkout scm
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -34,7 +34,7 @@ def getFullBuild(jdk, os) {
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
stage('Compile') {
|
stage("Compile - ${jdk}") {
|
||||||
withEnv(mvnEnv) {
|
withEnv(mvnEnv) {
|
||||||
timeout(time: 15, unit: 'MINUTES') {
|
timeout(time: 15, unit: 'MINUTES') {
|
||||||
withMaven(
|
withMaven(
|
||||||
|
@ -55,7 +55,7 @@ def getFullBuild(jdk, os) {
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
stage('Javadoc') {
|
stage("Javadoc - ${jdk}") {
|
||||||
withEnv(mvnEnv) {
|
withEnv(mvnEnv) {
|
||||||
timeout(time: 20, unit: 'MINUTES') {
|
timeout(time: 20, unit: 'MINUTES') {
|
||||||
withMaven(
|
withMaven(
|
||||||
|
@ -75,7 +75,7 @@ def getFullBuild(jdk, os) {
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
stage('Test') {
|
stage("Test - ${jdk}") {
|
||||||
withEnv(mvnEnv) {
|
withEnv(mvnEnv) {
|
||||||
timeout(time: 90, unit: 'MINUTES') {
|
timeout(time: 90, unit: 'MINUTES') {
|
||||||
// Run test phase / ignore test failures
|
// Run test phase / ignore test failures
|
||||||
|
@ -129,7 +129,7 @@ def getFullBuild(jdk, os) {
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
stage ('Compact3') {
|
stage ("Compact3 - ${jdk}") {
|
||||||
|
|
||||||
dir("aggregates/jetty-all-compact3") {
|
dir("aggregates/jetty-all-compact3") {
|
||||||
withEnv(mvnEnv) {
|
withEnv(mvnEnv) {
|
||||||
|
@ -211,4 +211,4 @@ def disableMvnReporters() {
|
||||||
openTasksPublisher(disabled: true)];
|
openTasksPublisher(disabled: true)];
|
||||||
}
|
}
|
||||||
|
|
||||||
// vim: et:ts=2:sw=2:ft=groovy
|
// vim: et:ts=2:sw=2:ft=groovy
|
||||||
|
|
Loading…
Reference in New Issue