Skip to content

Commit

Permalink
Merge branch 'main' into subarray
Browse files Browse the repository at this point in the history
  • Loading branch information
ic0ns authored Dec 15, 2023
2 parents 6b53c32 + 99905da commit 9bd0598
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pipeline {
stage('Code Analysis') {
when {
anyOf {
branch 'master'
branch 'main'
tag 'v*'
changeRequest()
}
Expand All @@ -70,7 +70,7 @@ pipeline {
stage('Unit Tests') {
when {
anyOf {
branch 'master'
branch 'main'
tag 'v*'
changeRequest()
}
Expand All @@ -92,7 +92,7 @@ pipeline {
stage('Integration Tests') {
when {
anyOf {
branch 'master'
branch 'main'
tag 'v*'
changeRequest()
}
Expand All @@ -117,7 +117,7 @@ pipeline {
stage('Deploy to Internal Nexus Repository') {
when {
anyOf {
branch 'master'
branch 'main'
tag 'v*'
}
}
Expand All @@ -134,4 +134,4 @@ pipeline {
recordIssues enabledForFailure: true, tools: [mavenConsole(), java(), javaDoc()]
}
}
}
}

0 comments on commit 9bd0598

Please sign in to comment.