Marking stages with jdk name too (helping in jenkins UI)

This commit is contained in:
Joakim Erdfelt 2018-02-28 12:43:03 -06:00
parent 0b89ffd055
commit 8728f2b2c7
1 changed files with 6 additions and 6 deletions

12
Jenkinsfile vendored
View File

@ -24,7 +24,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Checkout') {
stage("Checkout - ${jdk}") {
checkout scm
}
} catch (Exception e) {
@ -34,7 +34,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Compile') {
stage("Compile - ${jdk}") {
withEnv(mvnEnv) {
timeout(time: 15, unit: 'MINUTES') {
withMaven(
@ -55,7 +55,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Javadoc') {
stage("Javadoc - ${jdk}") {
withEnv(mvnEnv) {
timeout(time: 20, unit: 'MINUTES') {
withMaven(
@ -75,7 +75,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Test') {
stage("Test - ${jdk}") {
withEnv(mvnEnv) {
timeout(time: 90, unit: 'MINUTES') {
// Run test phase / ignore test failures
@ -129,7 +129,7 @@ def getFullBuild(jdk, os) {
try
{
stage ('Compact3') {
stage ("Compact3 - ${jdk}") {
dir("aggregates/jetty-all-compact3") {
withEnv(mvnEnv) {
@ -211,4 +211,4 @@ def disableMvnReporters() {
openTasksPublisher(disabled: true)];
}
// vim: et:ts=2:sw=2:ft=groovy
// vim: et:ts=2:sw=2:ft=groovy