Skip to content

Commit

Permalink
Merge pull request #456 from cherrycl/issue-452-4
Browse files Browse the repository at this point in the history
fix: Update when conditional in edgeXBuildGoParallel
  • Loading branch information
cloudxxx8 authored Sep 26, 2024
2 parents f3350a1 + 66592db commit b5a5e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/edgeXBuildGoParallel.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def call(config) {
when {
beforeAgent true
allOf {
expression { not { env.GIT_BRANCH =~ /^PR-.*/ } }
expression { !env.GIT_BRANCH.startsWith('PR-') }
expression { edgex.nodeExists(config, 'arm64') }
}
}
Expand Down

0 comments on commit b5a5e52

Please sign in to comment.