add jdk and os to stage labels

Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
olivier lamy 2018-02-13 14:02:18 +10:00
parent 5547435e09
commit a34a17bbf2
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -24,7 +24,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Checkout') {
stage('Checkout-'+os+'-'+jdk) {
checkout scm
}
} catch (Exception e) {
@ -34,7 +34,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Compile') {
stage('Compile-'+os+'-'+jdk) {
withEnv(mvnEnv) {
timeout(time: 15, unit: 'MINUTES') {
sh "mvn -V -B clean install -Dtest=None"
@ -48,7 +48,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Javadoc') {
stage('Javadoc-'+os+'-'+jdk) {
withEnv(mvnEnv) {
timeout(time: 20, unit: 'MINUTES') {
sh "mvn -V -B javadoc:javadoc"
@ -62,7 +62,7 @@ def getFullBuild(jdk, os) {
try
{
stage('Test') {
stage('Test-'+os+'-'+jdk) {
withEnv(mvnEnv) {
timeout(time: 90, unit: 'MINUTES') {
// Run test phase / ignore test failures
@ -116,7 +116,7 @@ def getFullBuild(jdk, os) {
try
{
stage ('Compact3') {
stage ('Compact3-'+os+'-'+jdk) {
dir("aggregates/jetty-all-compact3") {
withEnv(mvnEnv) {