Skip to content

Commit

Permalink
Ignore Windows stage in the pipeline (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
brjeter authored Jun 13, 2019
1 parent 9b293b5 commit d6f7ca3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ pipeline {
}
}
}
stage('Windows Full Build') {
//Commenting out Windows builds until pipeline issues can be resolved
/*stage('Windows Full Build') {
when { expression { env.CHANGE_ID == null } }
agent { label 'server-2016-large' }
steps {
Expand All @@ -47,7 +48,7 @@ pipeline {
bat 'mvn install -B -nsu %DISABLE_DOWNLOAD_PROGRESS_OPTS% -pl !%ITESTS%'
}
}
}
}*/
stage('Linux PR Build') {
when {
allOf {
Expand All @@ -63,7 +64,8 @@ pipeline {
}
}
}
stage('Windows PR Build') {
//Commenting out Windows builds until pipeline issues can be resolved
/*stage('Windows PR Build') {
when {
allOf {
expression { env.CHANGE_ID != null }
Expand All @@ -78,7 +80,7 @@ pipeline {
bat 'mvn install -B -Dgib.enabled=true -Dgib.referenceBranch=/refs/remotes/origin/%CHANGE_TARGET% -nsu %DISABLE_DOWNLOAD_PROGRESS_OPTS% -pl !%ITESTS%'
}
}
}
}*/
}
}
stage('Security Analysis') {
Expand Down

0 comments on commit d6f7ca3

Please sign in to comment.