fix(jenkins): do not trigger emissary-firmware with dirty tag
arcad/emissary/pipeline/head This commit looks good Details

This commit is contained in:
wpetit 2023-04-06 10:30:40 +02:00
parent 06b1235707
commit 18eb2d30c5
1 changed files with 13 additions and 12 deletions

13
Jenkinsfile vendored
View File

@ -51,12 +51,13 @@ pipeline {
sh 'make gitea-release' sh 'make gitea-release'
} }
def currentVersion = sh(returnStdout: true, script: 'make full-version').trim() def currentVersion = sh(returnStdout: true, script: 'make full-version').trim()
build( sh 'git status'
job: "../emissary-firmware/${env.GIT_BRANCH}", // build(
parameters: [ // job: "../emissary-firmware/${env.GIT_BRANCH}",
[$class: 'StringParameterValue', name: 'emissaryRelease', value: currentVersion] // parameters: [
] // [$class: 'StringParameterValue', name: 'emissaryRelease', value: currentVersion]
) // ]
// )
} }
} }
} }