Skip to content

Commit

Permalink
Merge pull request #462 from cherrycl/skip-arm-c-sdk-2
Browse files Browse the repository at this point in the history
fix: Update skip condition from Build LTS Release Image stage to Build Check
  • Loading branch information
cloudxxx8 authored Dec 4, 2024
2 parents 6ac2322 + 6c93d62 commit 7928b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vars/edgeXBuildCApp.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,6 @@ def call(config) {
stage('arm64') {
when {
beforeAgent true
expression { !env.GIT_BRANCH.startsWith('PR-') }
expression { !(env.PROJECT =~ /sdk/) }
expression { edgex.nodeExists(config, 'arm64') }
}
agent {
Expand Down Expand Up @@ -312,6 +310,8 @@ def call(config) {
stage('arm64') {
when {
beforeAgent true
expression { !env.GIT_BRANCH.startsWith('PR-') }
expression { !(env.PROJECT =~ /sdk/) }
expression { edgex.nodeExists(config, 'arm64') }
}
agent {
Expand Down

0 comments on commit 7928b88

Please sign in to comment.